@fluidframework/file-driver 2.0.0-dev-rc.3.0.0.250606 → 2.0.0-dev-rc.3.0.0.253463
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api-report/file-driver.api.md +14 -14
- package/dist/file-driver-alpha.d.ts +14 -14
- package/dist/file-driver-beta.d.ts +14 -14
- package/dist/file-driver-public.d.ts +14 -14
- package/dist/file-driver-untrimmed.d.ts +14 -14
- package/dist/fileDeltaStorageService.d.ts +1 -1
- package/dist/fileDeltaStorageService.d.ts.map +1 -1
- package/dist/fileDeltaStorageService.js +4 -4
- package/dist/fileDeltaStorageService.js.map +1 -1
- package/dist/fileDocumentDeltaConnection.d.ts +1 -1
- package/dist/fileDocumentDeltaConnection.d.ts.map +1 -1
- package/dist/fileDocumentDeltaConnection.js.map +1 -1
- package/dist/fileDocumentService.d.ts +1 -1
- package/dist/fileDocumentService.d.ts.map +1 -1
- package/dist/fileDocumentService.js.map +1 -1
- package/dist/fileDocumentServiceFactory.d.ts +1 -1
- package/dist/fileDocumentServiceFactory.d.ts.map +1 -1
- package/dist/fileDocumentServiceFactory.js.map +1 -1
- package/dist/fileDocumentStorageService.d.ts +6 -6
- package/dist/fileDocumentStorageService.d.ts.map +1 -1
- package/dist/fileDocumentStorageService.js +10 -10
- package/dist/fileDocumentStorageService.js.map +1 -1
- package/lib/file-driver-alpha.d.ts +14 -14
- package/lib/file-driver-beta.d.ts +14 -14
- package/lib/file-driver-public.d.ts +14 -14
- package/lib/file-driver-untrimmed.d.ts +14 -14
- package/lib/fileDeltaStorageService.d.ts +1 -1
- package/lib/fileDeltaStorageService.d.ts.map +1 -1
- package/lib/fileDeltaStorageService.js +2 -2
- package/lib/fileDeltaStorageService.js.map +1 -1
- package/lib/fileDocumentDeltaConnection.d.ts +1 -1
- package/lib/fileDocumentDeltaConnection.d.ts.map +1 -1
- package/lib/fileDocumentDeltaConnection.js.map +1 -1
- package/lib/fileDocumentService.d.ts +1 -1
- package/lib/fileDocumentService.d.ts.map +1 -1
- package/lib/fileDocumentService.js.map +1 -1
- package/lib/fileDocumentServiceFactory.d.ts +1 -1
- package/lib/fileDocumentServiceFactory.d.ts.map +1 -1
- package/lib/fileDocumentServiceFactory.js.map +1 -1
- package/lib/fileDocumentStorageService.d.ts +6 -6
- package/lib/fileDocumentStorageService.d.ts.map +1 -1
- package/lib/fileDocumentStorageService.js +3 -3
- package/lib/fileDocumentStorageService.js.map +1 -1
- package/lib/tsdoc-metadata.json +11 -0
- package/package.json +8 -20
- package/src/fileDeltaStorageService.ts +4 -3
- package/src/fileDocumentDeltaConnection.ts +2 -1
- package/src/fileDocumentService.ts +2 -1
- package/src/fileDocumentServiceFactory.ts +2 -1
- package/src/fileDocumentStorageService.ts +14 -4
- package/lib/test/types/validateFileDriverPrevious.generated.d.ts +0 -2
- package/lib/test/types/validateFileDriverPrevious.generated.d.ts.map +0 -1
- package/lib/test/types/validateFileDriverPrevious.generated.js +0 -26
- package/lib/test/types/validateFileDriverPrevious.generated.js.map +0 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
|
2
|
+
// It should be published with your NPM package. It should not be tracked by Git.
|
|
3
|
+
{
|
|
4
|
+
"tsdocVersion": "0.12",
|
|
5
|
+
"toolPackages": [
|
|
6
|
+
{
|
|
7
|
+
"packageName": "@microsoft/api-extractor",
|
|
8
|
+
"packageVersion": "7.42.3"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/file-driver",
|
|
3
|
-
"version": "2.0.0-dev-rc.3.0.0.
|
|
3
|
+
"version": "2.0.0-dev-rc.3.0.0.253463",
|
|
4
4
|
"description": "A driver that reads/write from/to local file storage.",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -14,16 +14,6 @@
|
|
|
14
14
|
"type": "module",
|
|
15
15
|
"exports": {
|
|
16
16
|
".": {
|
|
17
|
-
"import": {
|
|
18
|
-
"types": "./lib/index.d.ts",
|
|
19
|
-
"default": "./lib/index.js"
|
|
20
|
-
},
|
|
21
|
-
"require": {
|
|
22
|
-
"types": "./dist/index.d.ts",
|
|
23
|
-
"default": "./dist/index.js"
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"./public": {
|
|
27
17
|
"import": {
|
|
28
18
|
"types": "./lib/file-driver-public.d.ts",
|
|
29
19
|
"default": "./lib/index.js"
|
|
@@ -47,16 +37,16 @@
|
|
|
47
37
|
"main": "dist/index.js",
|
|
48
38
|
"types": "dist/index.d.ts",
|
|
49
39
|
"dependencies": {
|
|
50
|
-
"@fluid-internal/client-utils": "2.0.0-dev-rc.3.0.0.
|
|
51
|
-
"@fluidframework/core-interfaces": "2.0.0-dev-rc.3.0.0.
|
|
52
|
-
"@fluidframework/core-utils": "2.0.0-dev-rc.3.0.0.
|
|
53
|
-
"@fluidframework/driver-definitions": "2.0.0-dev-rc.3.0.0.
|
|
54
|
-
"@fluidframework/driver-utils": "2.0.0-dev-rc.3.0.0.
|
|
40
|
+
"@fluid-internal/client-utils": "2.0.0-dev-rc.3.0.0.253463",
|
|
41
|
+
"@fluidframework/core-interfaces": "2.0.0-dev-rc.3.0.0.253463",
|
|
42
|
+
"@fluidframework/core-utils": "2.0.0-dev-rc.3.0.0.253463",
|
|
43
|
+
"@fluidframework/driver-definitions": "2.0.0-dev-rc.3.0.0.253463",
|
|
44
|
+
"@fluidframework/driver-utils": "2.0.0-dev-rc.3.0.0.253463",
|
|
55
45
|
"@fluidframework/protocol-definitions": "^3.2.0",
|
|
56
|
-
"@fluidframework/replay-driver": "2.0.0-dev-rc.3.0.0.
|
|
46
|
+
"@fluidframework/replay-driver": "2.0.0-dev-rc.3.0.0.253463"
|
|
57
47
|
},
|
|
58
48
|
"devDependencies": {
|
|
59
|
-
"@arethetypeswrong/cli": "^0.
|
|
49
|
+
"@arethetypeswrong/cli": "^0.15.2",
|
|
60
50
|
"@biomejs/biome": "^1.6.2",
|
|
61
51
|
"@fluid-tools/build-cli": "^0.34.0",
|
|
62
52
|
"@fluidframework/build-common": "^2.0.3",
|
|
@@ -106,7 +96,6 @@
|
|
|
106
96
|
"build:docs": "fluid-build . --task api",
|
|
107
97
|
"build:esnext": "tsc --project ./tsconfig.json",
|
|
108
98
|
"check:are-the-types-wrong": "attw --pack . --entrypoints .",
|
|
109
|
-
"check:biome": "biome check .",
|
|
110
99
|
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
|
111
100
|
"check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
|
|
112
101
|
"ci:build:docs": "api-extractor run",
|
|
@@ -114,7 +103,6 @@
|
|
|
114
103
|
"eslint": "eslint --format stylish src",
|
|
115
104
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
116
105
|
"format": "fluid-build --task format .",
|
|
117
|
-
"format:biome": "biome check --apply .",
|
|
118
106
|
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
|
119
107
|
"lint": "fluid-build . --task lint",
|
|
120
108
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
|
@@ -4,9 +4,10 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import fs from "fs";
|
|
7
|
-
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
7
|
+
|
|
8
|
+
import { assert } from "@fluidframework/core-utils/internal";
|
|
9
|
+
import { IDocumentDeltaStorageService, IStream } from "@fluidframework/driver-definitions/internal";
|
|
10
|
+
import { emptyMessageStream } from "@fluidframework/driver-utils/internal";
|
|
10
11
|
import * as api from "@fluidframework/protocol-definitions";
|
|
11
12
|
|
|
12
13
|
/**
|
|
@@ -8,7 +8,7 @@ import { IDisposable } from "@fluidframework/core-interfaces";
|
|
|
8
8
|
import {
|
|
9
9
|
IDocumentDeltaConnection,
|
|
10
10
|
IDocumentDeltaConnectionEvents,
|
|
11
|
-
} from "@fluidframework/driver-definitions";
|
|
11
|
+
} from "@fluidframework/driver-definitions/internal";
|
|
12
12
|
import {
|
|
13
13
|
ConnectionMode,
|
|
14
14
|
IClientConfiguration,
|
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
ITokenClaims,
|
|
21
21
|
ScopeType,
|
|
22
22
|
} from "@fluidframework/protocol-definitions";
|
|
23
|
+
|
|
23
24
|
import { FileDeltaStorageService } from "./fileDeltaStorageService.js";
|
|
24
25
|
|
|
25
26
|
const MaxBatchDeltas = 2000;
|
|
@@ -4,8 +4,9 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { TypedEventEmitter } from "@fluid-internal/client-utils";
|
|
7
|
-
import * as api from "@fluidframework/driver-definitions";
|
|
7
|
+
import * as api from "@fluidframework/driver-definitions/internal";
|
|
8
8
|
import { IClient } from "@fluidframework/protocol-definitions";
|
|
9
|
+
|
|
9
10
|
import { FileDeltaStorageService } from "./fileDeltaStorageService.js";
|
|
10
11
|
|
|
11
12
|
/**
|
|
@@ -10,8 +10,9 @@ import {
|
|
|
10
10
|
IDocumentServiceFactory,
|
|
11
11
|
IDocumentStorageService,
|
|
12
12
|
IResolvedUrl,
|
|
13
|
-
} from "@fluidframework/driver-definitions";
|
|
13
|
+
} from "@fluidframework/driver-definitions/internal";
|
|
14
14
|
import { ISummaryTree } from "@fluidframework/protocol-definitions";
|
|
15
|
+
|
|
15
16
|
import { FileDeltaStorageService } from "./fileDeltaStorageService.js";
|
|
16
17
|
import { FileDocumentService } from "./fileDocumentService.js";
|
|
17
18
|
|
|
@@ -4,12 +4,22 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import fs from "fs";
|
|
7
|
+
|
|
7
8
|
import { bufferToString } from "@fluid-internal/client-utils";
|
|
8
|
-
import { assert } from "@fluidframework/core-utils";
|
|
9
|
-
import {
|
|
10
|
-
|
|
9
|
+
import { assert } from "@fluidframework/core-utils/internal";
|
|
10
|
+
import {
|
|
11
|
+
IDocumentStorageService,
|
|
12
|
+
ISummaryContext,
|
|
13
|
+
} from "@fluidframework/driver-definitions/internal";
|
|
14
|
+
import {
|
|
15
|
+
buildSnapshotTree,
|
|
16
|
+
convertSummaryTreeToSnapshotITree,
|
|
17
|
+
} from "@fluidframework/driver-utils/internal";
|
|
11
18
|
import * as api from "@fluidframework/protocol-definitions";
|
|
12
|
-
import {
|
|
19
|
+
import {
|
|
20
|
+
IFileSnapshot,
|
|
21
|
+
ReadDocumentStorageServiceBase,
|
|
22
|
+
} from "@fluidframework/replay-driver/internal";
|
|
13
23
|
|
|
14
24
|
// This ID is used by replay tool as Document Id.
|
|
15
25
|
// We leverage it to figure out when container is asking for root document tree.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validateFileDriverPrevious.generated.d.ts","sourceRoot":"","sources":["../../../src/test/types/validateFileDriverPrevious.generated.ts"],"names":[],"mappings":""}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
use_current_ClassDeclaration_FileDeltaStorageService(get_old_ClassDeclaration_FileDeltaStorageService());
|
|
2
|
-
use_old_ClassDeclaration_FileDeltaStorageService(get_current_ClassDeclaration_FileDeltaStorageService());
|
|
3
|
-
use_current_ClassDeclaration_FileDocumentServiceFactory(get_old_ClassDeclaration_FileDocumentServiceFactory());
|
|
4
|
-
use_old_ClassDeclaration_FileDocumentServiceFactory(get_current_ClassDeclaration_FileDocumentServiceFactory());
|
|
5
|
-
use_current_VariableDeclaration_FileSnapshotWriterClassFactory(get_old_VariableDeclaration_FileSnapshotWriterClassFactory());
|
|
6
|
-
use_old_VariableDeclaration_FileSnapshotWriterClassFactory(get_current_VariableDeclaration_FileSnapshotWriterClassFactory());
|
|
7
|
-
use_current_VariableDeclaration_FileStorageDocumentName(get_old_VariableDeclaration_FileStorageDocumentName());
|
|
8
|
-
use_old_VariableDeclaration_FileStorageDocumentName(get_current_VariableDeclaration_FileStorageDocumentName());
|
|
9
|
-
use_current_ClassDeclaration_FluidFetchReader(get_old_ClassDeclaration_FluidFetchReader());
|
|
10
|
-
use_old_ClassDeclaration_FluidFetchReader(
|
|
11
|
-
// @ts-expect-error compatibility expected to be broken
|
|
12
|
-
get_current_ClassDeclaration_FluidFetchReader());
|
|
13
|
-
use_current_VariableDeclaration_FluidFetchReaderFileSnapshotWriter(get_old_VariableDeclaration_FluidFetchReaderFileSnapshotWriter());
|
|
14
|
-
use_old_VariableDeclaration_FluidFetchReaderFileSnapshotWriter(get_current_VariableDeclaration_FluidFetchReaderFileSnapshotWriter());
|
|
15
|
-
use_current_InterfaceDeclaration_ISnapshotWriterStorage(get_old_InterfaceDeclaration_ISnapshotWriterStorage());
|
|
16
|
-
use_old_InterfaceDeclaration_ISnapshotWriterStorage(
|
|
17
|
-
// @ts-expect-error compatibility expected to be broken
|
|
18
|
-
get_current_InterfaceDeclaration_ISnapshotWriterStorage());
|
|
19
|
-
use_current_TypeAliasDeclaration_ReaderConstructor(get_old_TypeAliasDeclaration_ReaderConstructor());
|
|
20
|
-
use_old_TypeAliasDeclaration_ReaderConstructor(get_current_TypeAliasDeclaration_ReaderConstructor());
|
|
21
|
-
use_current_ClassDeclaration_ReplayFileDeltaConnection(get_old_ClassDeclaration_ReplayFileDeltaConnection());
|
|
22
|
-
use_old_ClassDeclaration_ReplayFileDeltaConnection(get_current_ClassDeclaration_ReplayFileDeltaConnection());
|
|
23
|
-
use_current_ClassDeclaration_Replayer(get_old_ClassDeclaration_Replayer());
|
|
24
|
-
use_old_ClassDeclaration_Replayer(get_current_ClassDeclaration_Replayer());
|
|
25
|
-
export {};
|
|
26
|
-
//# sourceMappingURL=validateFileDriverPrevious.generated.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validateFileDriverPrevious.generated.js","sourceRoot":"","sources":["../../../src/test/types/validateFileDriverPrevious.generated.ts"],"names":[],"mappings":"AAgCA,oDAAoD,CAChD,gDAAgD,EAAE,CAAC,CAAC;AAWxD,gDAAgD,CAC5C,oDAAoD,EAAE,CAAC,CAAC;AAW5D,uDAAuD,CACnD,mDAAmD,EAAE,CAAC,CAAC;AAW3D,mDAAmD,CAC/C,uDAAuD,EAAE,CAAC,CAAC;AAW/D,8DAA8D,CAC1D,0DAA0D,EAAE,CAAC,CAAC;AAWlE,0DAA0D,CACtD,8DAA8D,EAAE,CAAC,CAAC;AAWtE,uDAAuD,CACnD,mDAAmD,EAAE,CAAC,CAAC;AAW3D,mDAAmD,CAC/C,uDAAuD,EAAE,CAAC,CAAC;AAW/D,6CAA6C,CACzC,yCAAyC,EAAE,CAAC,CAAC;AAWjD,yCAAyC;AACrC,uDAAuD;AACvD,6CAA6C,EAAE,CAAC,CAAC;AAWrD,kEAAkE,CAC9D,8DAA8D,EAAE,CAAC,CAAC;AAWtE,8DAA8D,CAC1D,kEAAkE,EAAE,CAAC,CAAC;AAW1E,uDAAuD,CACnD,mDAAmD,EAAE,CAAC,CAAC;AAW3D,mDAAmD;AAC/C,uDAAuD;AACvD,uDAAuD,EAAE,CAAC,CAAC;AAW/D,kDAAkD,CAC9C,8CAA8C,EAAE,CAAC,CAAC;AAWtD,8CAA8C,CAC1C,kDAAkD,EAAE,CAAC,CAAC;AAW1D,sDAAsD,CAClD,kDAAkD,EAAE,CAAC,CAAC;AAW1D,kDAAkD,CAC9C,sDAAsD,EAAE,CAAC,CAAC;AAW9D,qCAAqC,CACjC,iCAAiC,EAAE,CAAC,CAAC;AAWzC,iCAAiC,CAC7B,qCAAqC,EAAE,CAAC,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/*\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.\n * Generated by fluid-type-test-generator in @fluidframework/build-tools.\n */\nimport type * as old from \"@fluidframework/file-driver-previous\";\nimport type * as current from \"../../index.js\";\n\n\n// See 'build-tools/src/type-test-generator/compatibility.ts' for more information.\ntype TypeOnly<T> = T extends number\n\t? number\n\t: T extends string\n\t? string\n\t: T extends boolean | bigint | symbol\n\t? T\n\t: {\n\t\t\t[P in keyof T]: TypeOnly<T[P]>;\n\t };\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_FileDeltaStorageService\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_ClassDeclaration_FileDeltaStorageService():\n TypeOnly<old.FileDeltaStorageService>;\ndeclare function use_current_ClassDeclaration_FileDeltaStorageService(\n use: TypeOnly<current.FileDeltaStorageService>): void;\nuse_current_ClassDeclaration_FileDeltaStorageService(\n get_old_ClassDeclaration_FileDeltaStorageService());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_FileDeltaStorageService\": {\"backCompat\": false}\n*/\ndeclare function get_current_ClassDeclaration_FileDeltaStorageService():\n TypeOnly<current.FileDeltaStorageService>;\ndeclare function use_old_ClassDeclaration_FileDeltaStorageService(\n use: TypeOnly<old.FileDeltaStorageService>): void;\nuse_old_ClassDeclaration_FileDeltaStorageService(\n get_current_ClassDeclaration_FileDeltaStorageService());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_FileDocumentServiceFactory\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_ClassDeclaration_FileDocumentServiceFactory():\n TypeOnly<old.FileDocumentServiceFactory>;\ndeclare function use_current_ClassDeclaration_FileDocumentServiceFactory(\n use: TypeOnly<current.FileDocumentServiceFactory>): void;\nuse_current_ClassDeclaration_FileDocumentServiceFactory(\n get_old_ClassDeclaration_FileDocumentServiceFactory());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_FileDocumentServiceFactory\": {\"backCompat\": false}\n*/\ndeclare function get_current_ClassDeclaration_FileDocumentServiceFactory():\n TypeOnly<current.FileDocumentServiceFactory>;\ndeclare function use_old_ClassDeclaration_FileDocumentServiceFactory(\n use: TypeOnly<old.FileDocumentServiceFactory>): void;\nuse_old_ClassDeclaration_FileDocumentServiceFactory(\n get_current_ClassDeclaration_FileDocumentServiceFactory());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_FileSnapshotWriterClassFactory\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_FileSnapshotWriterClassFactory():\n TypeOnly<typeof old.FileSnapshotWriterClassFactory>;\ndeclare function use_current_VariableDeclaration_FileSnapshotWriterClassFactory(\n use: TypeOnly<typeof current.FileSnapshotWriterClassFactory>): void;\nuse_current_VariableDeclaration_FileSnapshotWriterClassFactory(\n get_old_VariableDeclaration_FileSnapshotWriterClassFactory());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_FileSnapshotWriterClassFactory\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_FileSnapshotWriterClassFactory():\n TypeOnly<typeof current.FileSnapshotWriterClassFactory>;\ndeclare function use_old_VariableDeclaration_FileSnapshotWriterClassFactory(\n use: TypeOnly<typeof old.FileSnapshotWriterClassFactory>): void;\nuse_old_VariableDeclaration_FileSnapshotWriterClassFactory(\n get_current_VariableDeclaration_FileSnapshotWriterClassFactory());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_FileStorageDocumentName\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_FileStorageDocumentName():\n TypeOnly<typeof old.FileStorageDocumentName>;\ndeclare function use_current_VariableDeclaration_FileStorageDocumentName(\n use: TypeOnly<typeof current.FileStorageDocumentName>): void;\nuse_current_VariableDeclaration_FileStorageDocumentName(\n get_old_VariableDeclaration_FileStorageDocumentName());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_FileStorageDocumentName\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_FileStorageDocumentName():\n TypeOnly<typeof current.FileStorageDocumentName>;\ndeclare function use_old_VariableDeclaration_FileStorageDocumentName(\n use: TypeOnly<typeof old.FileStorageDocumentName>): void;\nuse_old_VariableDeclaration_FileStorageDocumentName(\n get_current_VariableDeclaration_FileStorageDocumentName());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_FluidFetchReader\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_ClassDeclaration_FluidFetchReader():\n TypeOnly<old.FluidFetchReader>;\ndeclare function use_current_ClassDeclaration_FluidFetchReader(\n use: TypeOnly<current.FluidFetchReader>): void;\nuse_current_ClassDeclaration_FluidFetchReader(\n get_old_ClassDeclaration_FluidFetchReader());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_FluidFetchReader\": {\"backCompat\": false}\n*/\ndeclare function get_current_ClassDeclaration_FluidFetchReader():\n TypeOnly<current.FluidFetchReader>;\ndeclare function use_old_ClassDeclaration_FluidFetchReader(\n use: TypeOnly<old.FluidFetchReader>): void;\nuse_old_ClassDeclaration_FluidFetchReader(\n // @ts-expect-error compatibility expected to be broken\n get_current_ClassDeclaration_FluidFetchReader());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_FluidFetchReaderFileSnapshotWriter\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_FluidFetchReaderFileSnapshotWriter():\n TypeOnly<typeof old.FluidFetchReaderFileSnapshotWriter>;\ndeclare function use_current_VariableDeclaration_FluidFetchReaderFileSnapshotWriter(\n use: TypeOnly<typeof current.FluidFetchReaderFileSnapshotWriter>): void;\nuse_current_VariableDeclaration_FluidFetchReaderFileSnapshotWriter(\n get_old_VariableDeclaration_FluidFetchReaderFileSnapshotWriter());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_FluidFetchReaderFileSnapshotWriter\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_FluidFetchReaderFileSnapshotWriter():\n TypeOnly<typeof current.FluidFetchReaderFileSnapshotWriter>;\ndeclare function use_old_VariableDeclaration_FluidFetchReaderFileSnapshotWriter(\n use: TypeOnly<typeof old.FluidFetchReaderFileSnapshotWriter>): void;\nuse_old_VariableDeclaration_FluidFetchReaderFileSnapshotWriter(\n get_current_VariableDeclaration_FluidFetchReaderFileSnapshotWriter());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_ISnapshotWriterStorage\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_ISnapshotWriterStorage():\n TypeOnly<old.ISnapshotWriterStorage>;\ndeclare function use_current_InterfaceDeclaration_ISnapshotWriterStorage(\n use: TypeOnly<current.ISnapshotWriterStorage>): void;\nuse_current_InterfaceDeclaration_ISnapshotWriterStorage(\n get_old_InterfaceDeclaration_ISnapshotWriterStorage());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_ISnapshotWriterStorage\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_ISnapshotWriterStorage():\n TypeOnly<current.ISnapshotWriterStorage>;\ndeclare function use_old_InterfaceDeclaration_ISnapshotWriterStorage(\n use: TypeOnly<old.ISnapshotWriterStorage>): void;\nuse_old_InterfaceDeclaration_ISnapshotWriterStorage(\n // @ts-expect-error compatibility expected to be broken\n get_current_InterfaceDeclaration_ISnapshotWriterStorage());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"TypeAliasDeclaration_ReaderConstructor\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_TypeAliasDeclaration_ReaderConstructor():\n TypeOnly<old.ReaderConstructor>;\ndeclare function use_current_TypeAliasDeclaration_ReaderConstructor(\n use: TypeOnly<current.ReaderConstructor>): void;\nuse_current_TypeAliasDeclaration_ReaderConstructor(\n get_old_TypeAliasDeclaration_ReaderConstructor());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"TypeAliasDeclaration_ReaderConstructor\": {\"backCompat\": false}\n*/\ndeclare function get_current_TypeAliasDeclaration_ReaderConstructor():\n TypeOnly<current.ReaderConstructor>;\ndeclare function use_old_TypeAliasDeclaration_ReaderConstructor(\n use: TypeOnly<old.ReaderConstructor>): void;\nuse_old_TypeAliasDeclaration_ReaderConstructor(\n get_current_TypeAliasDeclaration_ReaderConstructor());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_ReplayFileDeltaConnection\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_ClassDeclaration_ReplayFileDeltaConnection():\n TypeOnly<old.ReplayFileDeltaConnection>;\ndeclare function use_current_ClassDeclaration_ReplayFileDeltaConnection(\n use: TypeOnly<current.ReplayFileDeltaConnection>): void;\nuse_current_ClassDeclaration_ReplayFileDeltaConnection(\n get_old_ClassDeclaration_ReplayFileDeltaConnection());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_ReplayFileDeltaConnection\": {\"backCompat\": false}\n*/\ndeclare function get_current_ClassDeclaration_ReplayFileDeltaConnection():\n TypeOnly<current.ReplayFileDeltaConnection>;\ndeclare function use_old_ClassDeclaration_ReplayFileDeltaConnection(\n use: TypeOnly<old.ReplayFileDeltaConnection>): void;\nuse_old_ClassDeclaration_ReplayFileDeltaConnection(\n get_current_ClassDeclaration_ReplayFileDeltaConnection());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_Replayer\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_ClassDeclaration_Replayer():\n TypeOnly<old.Replayer>;\ndeclare function use_current_ClassDeclaration_Replayer(\n use: TypeOnly<current.Replayer>): void;\nuse_current_ClassDeclaration_Replayer(\n get_old_ClassDeclaration_Replayer());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_Replayer\": {\"backCompat\": false}\n*/\ndeclare function get_current_ClassDeclaration_Replayer():\n TypeOnly<current.Replayer>;\ndeclare function use_old_ClassDeclaration_Replayer(\n use: TypeOnly<old.Replayer>): void;\nuse_old_ClassDeclaration_Replayer(\n get_current_ClassDeclaration_Replayer());\n"]}
|