@fluidframework/driver-definitions 0.46.1000-58535 → 0.46.2000-68089

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.
Files changed (52) hide show
  1. package/api-report/driver-definitions.api.md +3 -4
  2. package/dist/driverError.d.ts +4 -4
  3. package/dist/driverError.js +4 -4
  4. package/dist/driverError.js.map +1 -1
  5. package/dist/storage.d.ts +2 -2
  6. package/dist/storage.d.ts.map +1 -1
  7. package/dist/storage.js.map +1 -1
  8. package/dist/urlResolver.d.ts +2 -2
  9. package/dist/urlResolver.d.ts.map +1 -1
  10. package/dist/urlResolver.js +0 -4
  11. package/dist/urlResolver.js.map +1 -1
  12. package/lib/driverError.d.ts +4 -4
  13. package/lib/driverError.js +4 -4
  14. package/lib/driverError.js.map +1 -1
  15. package/lib/storage.d.ts +2 -2
  16. package/lib/storage.d.ts.map +1 -1
  17. package/lib/storage.js.map +1 -1
  18. package/lib/test/types/validateDriverDefinitionsPrevious.d.ts +2 -0
  19. package/lib/test/types/validateDriverDefinitionsPrevious.d.ts.map +1 -0
  20. package/lib/test/types/{validate0.44.0.js → validateDriverDefinitionsPrevious.js} +6 -10
  21. package/lib/test/types/validateDriverDefinitionsPrevious.js.map +1 -0
  22. package/lib/urlResolver.d.ts +2 -2
  23. package/lib/urlResolver.d.ts.map +1 -1
  24. package/lib/urlResolver.js +0 -4
  25. package/lib/urlResolver.js.map +1 -1
  26. package/package.json +21 -150
  27. package/src/driverError.ts +4 -4
  28. package/src/storage.ts +7 -2
  29. package/src/urlResolver.ts +5 -6
  30. package/lib/test/types/validate0.39.8.d.ts +0 -2
  31. package/lib/test/types/validate0.39.8.d.ts.map +0 -1
  32. package/lib/test/types/validate0.39.8.js +0 -90
  33. package/lib/test/types/validate0.39.8.js.map +0 -1
  34. package/lib/test/types/validate0.40.0.d.ts +0 -2
  35. package/lib/test/types/validate0.40.0.d.ts.map +0 -1
  36. package/lib/test/types/validate0.40.0.js +0 -70
  37. package/lib/test/types/validate0.40.0.js.map +0 -1
  38. package/lib/test/types/validate0.41.0.d.ts +0 -2
  39. package/lib/test/types/validate0.41.0.d.ts.map +0 -1
  40. package/lib/test/types/validate0.41.0.js +0 -70
  41. package/lib/test/types/validate0.41.0.js.map +0 -1
  42. package/lib/test/types/validate0.42.0.d.ts +0 -2
  43. package/lib/test/types/validate0.42.0.d.ts.map +0 -1
  44. package/lib/test/types/validate0.42.0.js +0 -70
  45. package/lib/test/types/validate0.42.0.js.map +0 -1
  46. package/lib/test/types/validate0.43.0.d.ts +0 -2
  47. package/lib/test/types/validate0.43.0.d.ts.map +0 -1
  48. package/lib/test/types/validate0.43.0.js +0 -68
  49. package/lib/test/types/validate0.43.0.js.map +0 -1
  50. package/lib/test/types/validate0.44.0.d.ts +0 -2
  51. package/lib/test/types/validate0.44.0.d.ts.map +0 -1
  52. package/lib/test/types/validate0.44.0.js.map +0 -1
@@ -1,7 +1,3 @@
1
- /*!
2
- * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
- * Licensed under the MIT License.
4
- */
5
1
  /**
6
2
  * Additional key in the loader request header
7
3
  */
@@ -1 +1 @@
1
- {"version":3,"file":"urlResolver.js","sourceRoot":"","sources":["../src/urlResolver.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAoEH;;GAEG;AACH,MAAM,CAAN,IAAY,YAKX;AALD,WAAY,YAAY;IACpB,qDAAqD;IACrD,6DAA6C,CAAA;IAC7C,iDAAiD;IACjD,uCAAuB,CAAA;AAC3B,CAAC,EALW,YAAY,KAAZ,YAAY,QAKvB","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { IRequest, IFluidCodeDetails } from \"@fluidframework/core-interfaces\";\n\nexport type IResolvedUrl = IWebResolvedUrl | IFluidResolvedUrl;\n\nexport interface IResolvedUrlBase {\n type: string;\n}\n\nexport interface IWebResolvedUrl extends IResolvedUrlBase {\n type: \"web\";\n data: string;\n}\n\nexport interface IFluidResolvedUrl extends IResolvedUrlBase {\n type: \"fluid\";\n /**\n * The id of the container this resolved url is for.\n */\n id: string,\n url: string;\n tokens: { [name: string]: string };\n endpoints: { [name: string]: string };\n}\n\n/**\n * Container package info handed off to resolver.\n */\nexport interface IContainerPackageInfo {\n /**\n * Container package name.\n */\n name: string;\n}\n\nexport interface IUrlResolver {\n\n // Like DNS should be able to cache resolution requests. Then possibly just have a token provider go and do stuff?\n // the expiration of it could be relative to the lifetime of the token? Requests after need to refresh?\n // or do we split the token access from this?\n resolve(request: IRequest): Promise<IResolvedUrl | undefined>;\n\n // Creates a url for the created container with any data store path given in the relative url.\n getAbsoluteUrl(\n resolvedUrl: IResolvedUrl,\n relativeUrl: string,\n packageInfoSource?: IFluidCodeDetails | IContainerPackageInfo,\n ): Promise<string>;\n}\n\n/**\n* Information that can be returned by a lightweight, seperately exported driver function. Used to preanalyze a URL\n* for driver compatibility and preload information.\n*/\nexport interface DriverPreCheckInfo {\n /**\n * A code details hint that can potentially be used to prefetch container code prior to having a snapshot.\n */\n codeDetailsHint?: string;\n\n /**\n * Domains that will be connected to on the critical boot path. Hosts can choose to preconnect to these for\n * improved performance.\n */\n criticalBootDomains?: string[];\n }\n\n/**\n * Additional key in the loader request header\n */\nexport enum DriverHeader {\n // Key to indicate whether the request for summarizer\n summarizingClient = \"fluid-client-summarizer\",\n // createNew information, specific to each driver\n createNew = \"createNew\",\n}\n\nexport interface IDriverHeader {\n [DriverHeader.summarizingClient]: boolean;\n [DriverHeader.createNew]: any;\n}\n\ndeclare module \"@fluidframework/core-interfaces\" {\n // eslint-disable-next-line @typescript-eslint/no-empty-interface\n export interface IRequestHeader extends Partial<IDriverHeader> { }\n}\n"]}
1
+ {"version":3,"file":"urlResolver.js","sourceRoot":"","sources":["../src/urlResolver.ts"],"names":[],"mappings":"AAsEA;;GAEG;AACH,MAAM,CAAN,IAAY,YAKX;AALD,WAAY,YAAY;IACpB,qDAAqD;IACrD,6DAA6C,CAAA;IAC7C,iDAAiD;IACjD,uCAAuB,CAAA;AAC3B,CAAC,EALW,YAAY,KAAZ,YAAY,QAKvB","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\nimport { IRequest } from \"@fluidframework/core-interfaces\";\n\nexport type IResolvedUrl = IWebResolvedUrl | IFluidResolvedUrl;\n\nexport interface IResolvedUrlBase {\n type: string;\n}\n\nexport interface IWebResolvedUrl extends IResolvedUrlBase {\n type: \"web\";\n data: string;\n}\n\nexport interface IFluidResolvedUrl extends IResolvedUrlBase {\n type: \"fluid\";\n /**\n * The id of the container this resolved url is for.\n */\n id: string;\n url: string;\n tokens: { [name: string]: string; };\n endpoints: { [name: string]: string; };\n}\n\n/**\n * Container package info handed off to resolver.\n */\nexport interface IContainerPackageInfo {\n /**\n * Container package name.\n */\n name: string;\n}\n\nexport interface IUrlResolver {\n\n // Like DNS should be able to cache resolution requests. Then possibly just have a token provider go and do stuff?\n // the expiration of it could be relative to the lifetime of the token? Requests after need to refresh?\n // or do we split the token access from this?\n resolve(request: IRequest): Promise<IResolvedUrl | undefined>;\n\n // Creates a url for the created container with any data store path given in the relative url.\n getAbsoluteUrl(\n resolvedUrl: IResolvedUrl,\n relativeUrl: string,\n packageInfoSource?: IContainerPackageInfo,\n ): Promise<string>;\n}\n\n/**\n* Information that can be returned by a lightweight, seperately exported driver function. Used to preanalyze a URL\n* for driver compatibility and preload information.\n*/\nexport interface DriverPreCheckInfo {\n /**\n * A code details hint that can potentially be used to prefetch container code prior to having a snapshot.\n */\n codeDetailsHint?: string;\n\n /**\n * Domains that will be connected to on the critical boot path. Hosts can choose to preconnect to these for\n * improved performance.\n */\n criticalBootDomains?: string[];\n }\n\n/**\n * Additional key in the loader request header\n */\nexport enum DriverHeader {\n // Key to indicate whether the request for summarizer\n summarizingClient = \"fluid-client-summarizer\",\n // createNew information, specific to each driver\n createNew = \"createNew\",\n}\n\nexport interface IDriverHeader {\n [DriverHeader.summarizingClient]: boolean;\n [DriverHeader.createNew]: any;\n}\n\ndeclare module \"@fluidframework/core-interfaces\" {\n // eslint-disable-next-line @typescript-eslint/no-empty-interface\n export interface IRequestHeader extends Partial<IDriverHeader> { }\n}\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/driver-definitions",
3
- "version": "0.46.1000-58535",
3
+ "version": "0.46.2000-68089",
4
4
  "description": "Fluid driver definitions",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -15,15 +15,13 @@
15
15
  "module": "lib/index.js",
16
16
  "types": "dist/index.d.ts",
17
17
  "scripts": {
18
- "build": "npm run build:gen && concurrently npm:build:compile npm:lint && npm run build:docs",
19
- "build:compile": "concurrently npm:tsc npm:build:esnext",
18
+ "build": "concurrently npm:build:compile npm:lint && npm run build:docs",
19
+ "build:compile": "concurrently npm:typetests:gen npm:tsc npm:build:esnext",
20
20
  "build:docs": "api-extractor run --local --typescript-compiler-folder ./node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
21
21
  "build:esnext": "tsc --project ./tsconfig.esnext.json",
22
22
  "build:full": "npm run build",
23
23
  "build:full:compile": "npm run build:compile",
24
- "build:gen": "npm run build:gen:typetests",
25
- "build:gen:typetests": "fluid-type-validator -d .",
26
- "ci:build": "npm run build:gen && npm run build:compile",
24
+ "ci:build": "npm run build:compile",
27
25
  "ci:build:docs": "api-extractor run --typescript-compiler-folder ./node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
28
26
  "ci:test": "echo No test for this package",
29
27
  "ci:test:coverage": "echo No test for this package",
@@ -35,24 +33,21 @@
35
33
  "tsc": "tsc",
36
34
  "tsc:watch": "tsc --watch",
37
35
  "tsfmt": "tsfmt --verify",
38
- "tsfmt:fix": "tsfmt --replace"
36
+ "tsfmt:fix": "tsfmt --replace",
37
+ "typetests:gen": "fluid-type-validator -d .",
38
+ "typetests:prepare": "fluid-type-validator -d . -p"
39
39
  },
40
40
  "dependencies": {
41
- "@fluidframework/common-definitions": "^0.20.0",
42
- "@fluidframework/core-interfaces": "^0.42.0",
43
- "@fluidframework/protocol-definitions": "^0.1028.1000-0"
41
+ "@fluidframework/common-definitions": "^0.20.1",
42
+ "@fluidframework/core-interfaces": "^0.43.1000",
43
+ "@fluidframework/protocol-definitions": "^0.1028.2000-0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@fluidframework/build-common": "^0.23.0",
47
- "@fluidframework/build-tools": "^0.2.58041",
48
- "@fluidframework/driver-definitions-0.39.8": "npm:@fluidframework/driver-definitions@0.39.8",
49
- "@fluidframework/driver-definitions-0.40.0": "npm:@fluidframework/driver-definitions@0.40.0",
50
- "@fluidframework/driver-definitions-0.41.0": "npm:@fluidframework/driver-definitions@0.41.0",
51
- "@fluidframework/driver-definitions-0.42.0": "npm:@fluidframework/driver-definitions@0.42.0",
52
- "@fluidframework/driver-definitions-0.43.0": "npm:@fluidframework/driver-definitions@0.43.0",
53
- "@fluidframework/driver-definitions-0.44.0": "npm:@fluidframework/driver-definitions@0.44.0",
54
- "@fluidframework/eslint-config-fluid": "^0.27.0",
55
- "@microsoft/api-extractor": "^7.16.1",
47
+ "@fluidframework/build-tools": "^0.2.66793",
48
+ "@fluidframework/driver-definitions-previous": "npm:@fluidframework/driver-definitions@0.46.1000",
49
+ "@fluidframework/eslint-config-fluid": "^0.28.2000",
50
+ "@microsoft/api-extractor": "^7.22.2",
56
51
  "@rushstack/eslint-config": "^2.5.1",
57
52
  "@typescript-eslint/eslint-plugin": "~5.9.0",
58
53
  "@typescript-eslint/parser": "~5.9.0",
@@ -62,142 +57,18 @@
62
57
  "eslint-plugin-editorconfig": "~3.2.0",
63
58
  "eslint-plugin-eslint-comments": "~3.2.0",
64
59
  "eslint-plugin-import": "~2.25.4",
65
- "eslint-plugin-no-null": "~1.0.2",
60
+ "eslint-plugin-jest": "~26.1.3",
61
+ "eslint-plugin-mocha": "~10.0.3",
62
+ "eslint-plugin-promise": "~6.0.0",
66
63
  "eslint-plugin-react": "~7.28.0",
64
+ "eslint-plugin-tsdoc": "~0.2.14",
67
65
  "eslint-plugin-unicorn": "~40.0.0",
68
66
  "rimraf": "^2.6.2",
69
- "typescript": "~4.1.3",
67
+ "typescript": "~4.5.5",
70
68
  "typescript-formatter": "7.1.0"
71
69
  },
72
70
  "typeValidation": {
73
- "version": "0.45.0",
74
- "broken": {
75
- "0.39.8": {
76
- "TypeAliasDeclaration_DriverError": {
77
- "backCompat": false
78
- },
79
- "EnumDeclaration_DriverErrorType": {
80
- "backCompat": false
81
- },
82
- "InterfaceDeclaration_IAuthorizationError": {
83
- "backCompat": false
84
- },
85
- "InterfaceDeclaration_IDocumentDeltaConnection": {
86
- "forwardCompat": false,
87
- "backCompat": false
88
- },
89
- "InterfaceDeclaration_IDocumentService": {
90
- "forwardCompat": false,
91
- "backCompat": false
92
- },
93
- "InterfaceDeclaration_IDocumentServiceFactory": {
94
- "forwardCompat": false,
95
- "backCompat": false
96
- },
97
- "InterfaceDeclaration_IDriverBasicError": {
98
- "backCompat": false
99
- },
100
- "InterfaceDeclaration_IDriverErrorBase": {
101
- "backCompat": false
102
- },
103
- "InterfaceDeclaration_IGenericNetworkError": {
104
- "backCompat": false
105
- },
106
- "InterfaceDeclaration_IThrottlingWarning": {
107
- "backCompat": false
108
- },
109
- "get_current_InterfaceDeclaration_IDocumentDeltaConnection": {
110
- "backCompat": false
111
- },
112
- "InterfaceDeclaration_DriverPreCheckInfo": {
113
- "backCompat": false
114
- },
115
- "InterfaceDeclaration_IDocumentStorageService": {
116
- "backCompat": false
117
- }
118
- },
119
- "0.40.0": {
120
- "InterfaceDeclaration_IDocumentDeltaConnection": {
121
- "backCompat": false
122
- },
123
- "InterfaceDeclaration_IDocumentService": {
124
- "backCompat": false
125
- },
126
- "InterfaceDeclaration_IDocumentServiceFactory": {
127
- "backCompat": false
128
- },
129
- "get_current_InterfaceDeclaration_IDocumentDeltaConnection": {
130
- "backCompat": false
131
- },
132
- "InterfaceDeclaration_DriverPreCheckInfo": {
133
- "backCompat": false
134
- },
135
- "InterfaceDeclaration_IDocumentStorageService": {
136
- "backCompat": false
137
- }
138
- },
139
- "0.41.0": {
140
- "InterfaceDeclaration_IDocumentDeltaConnection": {
141
- "backCompat": false
142
- },
143
- "InterfaceDeclaration_IDocumentService": {
144
- "backCompat": false
145
- },
146
- "InterfaceDeclaration_IDocumentServiceFactory": {
147
- "backCompat": false
148
- },
149
- "get_current_InterfaceDeclaration_IDocumentDeltaConnection": {
150
- "backCompat": false
151
- },
152
- "InterfaceDeclaration_DriverPreCheckInfo": {
153
- "backCompat": false
154
- },
155
- "InterfaceDeclaration_IDocumentStorageService": {
156
- "backCompat": false
157
- }
158
- },
159
- "0.42.0": {
160
- "InterfaceDeclaration_IDocumentDeltaConnection": {
161
- "backCompat": false
162
- },
163
- "InterfaceDeclaration_IDocumentService": {
164
- "backCompat": false
165
- },
166
- "InterfaceDeclaration_IDocumentServiceFactory": {
167
- "backCompat": false
168
- },
169
- "InterfaceDeclaration_DriverPreCheckInfo": {
170
- "backCompat": false
171
- },
172
- "InterfaceDeclaration_IDocumentStorageService": {
173
- "backCompat": false
174
- }
175
- },
176
- "0.43.0": {
177
- "InterfaceDeclaration_DriverPreCheckInfo": {
178
- "backCompat": false
179
- },
180
- "InterfaceDeclaration_IDocumentService": {
181
- "backCompat": false
182
- },
183
- "InterfaceDeclaration_IDocumentServiceFactory": {
184
- "backCompat": false
185
- },
186
- "InterfaceDeclaration_IDocumentStorageService": {
187
- "backCompat": false
188
- }
189
- },
190
- "0.44.0": {
191
- "InterfaceDeclaration_IDocumentService": {
192
- "backCompat": false
193
- },
194
- "InterfaceDeclaration_IDocumentServiceFactory": {
195
- "backCompat": false
196
- },
197
- "InterfaceDeclaration_IDocumentStorageService": {
198
- "backCompat": false
199
- }
200
- }
201
- }
71
+ "version": "0.46.2000",
72
+ "broken": {}
202
73
  }
203
74
  }
@@ -51,10 +51,10 @@ export enum DriverErrorType {
51
51
  writeError = "writeError",
52
52
 
53
53
  /**
54
- * Generic fetch failure.
55
- * Most of such failures are due to client being offline, or DNS is not reachable, such errors map to
56
- * DriverErrorType.offlineError. Anything else that can't be diagnose as likely offline maps to this error.
57
- * This can also indicate no response from server.
54
+ * A generic fetch failure that indicates we were not able to get a response from the server.
55
+ * This may be due to the client being offline (though, if we are able to detect offline state it will be
56
+ * logged as an offlineError instead). Other possibilities could be DNS errors, malformed fetch request,
57
+ * CSP violation, etc.
58
58
  */
59
59
  fetchFailure = "fetchFailure",
60
60
 
package/src/storage.ts CHANGED
@@ -226,7 +226,7 @@ export interface IDocumentDeltaConnection extends IDisposable, IEventProvider<ID
226
226
  * to better understand server environment etc. and use it in case error occurs.
227
227
  * Format: "prop1:val1;prop2:val2;prop3:val3"
228
228
  */
229
- relayServiceAgent?: string,
229
+ relayServiceAgent?: string;
230
230
 
231
231
  /**
232
232
  * Submit a new message to the server
@@ -304,7 +304,11 @@ export interface IDocumentServiceFactory {
304
304
  /**
305
305
  * Returns an instance of IDocumentService
306
306
  */
307
- createDocumentService(resolvedUrl: IResolvedUrl, logger?: ITelemetryBaseLogger): Promise<IDocumentService>;
307
+ createDocumentService(
308
+ resolvedUrl: IResolvedUrl,
309
+ logger?: ITelemetryBaseLogger,
310
+ clientIsSummarizer?: boolean,
311
+ ): Promise<IDocumentService>;
308
312
 
309
313
  /**
310
314
  * Creates a new document with the provided options. Returns the document service.
@@ -315,6 +319,7 @@ export interface IDocumentServiceFactory {
315
319
  createNewSummary: ISummaryTree | undefined,
316
320
  createNewResolvedUrl: IResolvedUrl,
317
321
  logger?: ITelemetryBaseLogger,
322
+ clientIsSummarizer?: boolean,
318
323
  ): Promise<IDocumentService>;
319
324
  }
320
325
 
@@ -2,8 +2,7 @@
2
2
  * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
3
  * Licensed under the MIT License.
4
4
  */
5
-
6
- import { IRequest, IFluidCodeDetails } from "@fluidframework/core-interfaces";
5
+ import { IRequest } from "@fluidframework/core-interfaces";
7
6
 
8
7
  export type IResolvedUrl = IWebResolvedUrl | IFluidResolvedUrl;
9
8
 
@@ -21,10 +20,10 @@ export interface IFluidResolvedUrl extends IResolvedUrlBase {
21
20
  /**
22
21
  * The id of the container this resolved url is for.
23
22
  */
24
- id: string,
23
+ id: string;
25
24
  url: string;
26
- tokens: { [name: string]: string };
27
- endpoints: { [name: string]: string };
25
+ tokens: { [name: string]: string; };
26
+ endpoints: { [name: string]: string; };
28
27
  }
29
28
 
30
29
  /**
@@ -48,7 +47,7 @@ export interface IUrlResolver {
48
47
  getAbsoluteUrl(
49
48
  resolvedUrl: IResolvedUrl,
50
49
  relativeUrl: string,
51
- packageInfoSource?: IFluidCodeDetails | IContainerPackageInfo,
50
+ packageInfoSource?: IContainerPackageInfo,
52
51
  ): Promise<string>;
53
52
  }
54
53
 
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=validate0.39.8.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"validate0.39.8.d.ts","sourceRoot":"","sources":["../../../src/test/types/validate0.39.8.ts"],"names":[],"mappings":""}
@@ -1,90 +0,0 @@
1
- use_current_TypeAliasDeclaration_DriverError(get_old_TypeAliasDeclaration_DriverError());
2
- use_old_TypeAliasDeclaration_DriverError(
3
- // @ts-expect-error compatibility expected to be broken
4
- get_current_TypeAliasDeclaration_DriverError());
5
- use_current_EnumDeclaration_DriverErrorType(get_old_EnumDeclaration_DriverErrorType());
6
- use_old_EnumDeclaration_DriverErrorType(
7
- // @ts-expect-error compatibility expected to be broken
8
- get_current_EnumDeclaration_DriverErrorType());
9
- use_current_EnumDeclaration_DriverHeader(get_old_EnumDeclaration_DriverHeader());
10
- use_old_EnumDeclaration_DriverHeader(get_current_EnumDeclaration_DriverHeader());
11
- use_current_InterfaceDeclaration_DriverPreCheckInfo(get_old_InterfaceDeclaration_DriverPreCheckInfo());
12
- use_old_InterfaceDeclaration_DriverPreCheckInfo(
13
- // @ts-expect-error compatibility expected to be broken
14
- get_current_InterfaceDeclaration_DriverPreCheckInfo());
15
- use_current_InterfaceDeclaration_IAuthorizationError(get_old_InterfaceDeclaration_IAuthorizationError());
16
- use_old_InterfaceDeclaration_IAuthorizationError(
17
- // @ts-expect-error compatibility expected to be broken
18
- get_current_InterfaceDeclaration_IAuthorizationError());
19
- use_current_InterfaceDeclaration_IDeltasFetchResult(get_old_InterfaceDeclaration_IDeltasFetchResult());
20
- use_old_InterfaceDeclaration_IDeltasFetchResult(get_current_InterfaceDeclaration_IDeltasFetchResult());
21
- use_current_InterfaceDeclaration_IDeltaStorageService(get_old_InterfaceDeclaration_IDeltaStorageService());
22
- use_old_InterfaceDeclaration_IDeltaStorageService(get_current_InterfaceDeclaration_IDeltaStorageService());
23
- use_current_InterfaceDeclaration_IDocumentDeltaConnection(
24
- // @ts-expect-error compatibility expected to be broken
25
- get_old_InterfaceDeclaration_IDocumentDeltaConnection());
26
- use_old_InterfaceDeclaration_IDocumentDeltaConnection(
27
- // @ts-expect-error compatibility expected to be broken
28
- get_current_InterfaceDeclaration_IDocumentDeltaConnection());
29
- use_current_InterfaceDeclaration_IDocumentDeltaConnectionEvents(get_old_InterfaceDeclaration_IDocumentDeltaConnectionEvents());
30
- use_old_InterfaceDeclaration_IDocumentDeltaConnectionEvents(get_current_InterfaceDeclaration_IDocumentDeltaConnectionEvents());
31
- use_current_InterfaceDeclaration_IDocumentDeltaStorageService(get_old_InterfaceDeclaration_IDocumentDeltaStorageService());
32
- use_old_InterfaceDeclaration_IDocumentDeltaStorageService(get_current_InterfaceDeclaration_IDocumentDeltaStorageService());
33
- use_current_InterfaceDeclaration_IDocumentService(
34
- // @ts-expect-error compatibility expected to be broken
35
- get_old_InterfaceDeclaration_IDocumentService());
36
- use_old_InterfaceDeclaration_IDocumentService(
37
- // @ts-expect-error compatibility expected to be broken
38
- get_current_InterfaceDeclaration_IDocumentService());
39
- use_current_InterfaceDeclaration_IDocumentServiceFactory(
40
- // @ts-expect-error compatibility expected to be broken
41
- get_old_InterfaceDeclaration_IDocumentServiceFactory());
42
- use_old_InterfaceDeclaration_IDocumentServiceFactory(
43
- // @ts-expect-error compatibility expected to be broken
44
- get_current_InterfaceDeclaration_IDocumentServiceFactory());
45
- use_current_InterfaceDeclaration_IDocumentServicePolicies(get_old_InterfaceDeclaration_IDocumentServicePolicies());
46
- use_old_InterfaceDeclaration_IDocumentServicePolicies(get_current_InterfaceDeclaration_IDocumentServicePolicies());
47
- use_current_InterfaceDeclaration_IDocumentStorageService(get_old_InterfaceDeclaration_IDocumentStorageService());
48
- use_old_InterfaceDeclaration_IDocumentStorageService(
49
- // @ts-expect-error compatibility expected to be broken
50
- get_current_InterfaceDeclaration_IDocumentStorageService());
51
- use_current_InterfaceDeclaration_IDocumentStorageServicePolicies(get_old_InterfaceDeclaration_IDocumentStorageServicePolicies());
52
- use_old_InterfaceDeclaration_IDocumentStorageServicePolicies(get_current_InterfaceDeclaration_IDocumentStorageServicePolicies());
53
- use_current_InterfaceDeclaration_IDriverBasicError(get_old_InterfaceDeclaration_IDriverBasicError());
54
- use_old_InterfaceDeclaration_IDriverBasicError(
55
- // @ts-expect-error compatibility expected to be broken
56
- get_current_InterfaceDeclaration_IDriverBasicError());
57
- use_current_InterfaceDeclaration_IDriverErrorBase(get_old_InterfaceDeclaration_IDriverErrorBase());
58
- use_old_InterfaceDeclaration_IDriverErrorBase(
59
- // @ts-expect-error compatibility expected to be broken
60
- get_current_InterfaceDeclaration_IDriverErrorBase());
61
- use_current_InterfaceDeclaration_IDriverHeader(get_old_InterfaceDeclaration_IDriverHeader());
62
- use_old_InterfaceDeclaration_IDriverHeader(get_current_InterfaceDeclaration_IDriverHeader());
63
- use_current_InterfaceDeclaration_IFluidResolvedUrl(get_old_InterfaceDeclaration_IFluidResolvedUrl());
64
- use_old_InterfaceDeclaration_IFluidResolvedUrl(get_current_InterfaceDeclaration_IFluidResolvedUrl());
65
- use_current_InterfaceDeclaration_IGenericNetworkError(get_old_InterfaceDeclaration_IGenericNetworkError());
66
- use_old_InterfaceDeclaration_IGenericNetworkError(
67
- // @ts-expect-error compatibility expected to be broken
68
- get_current_InterfaceDeclaration_IGenericNetworkError());
69
- use_current_TypeAliasDeclaration_IResolvedUrl(get_old_TypeAliasDeclaration_IResolvedUrl());
70
- use_old_TypeAliasDeclaration_IResolvedUrl(get_current_TypeAliasDeclaration_IResolvedUrl());
71
- use_current_InterfaceDeclaration_IResolvedUrlBase(get_old_InterfaceDeclaration_IResolvedUrlBase());
72
- use_old_InterfaceDeclaration_IResolvedUrlBase(get_current_InterfaceDeclaration_IResolvedUrlBase());
73
- use_current_InterfaceDeclaration_IStream(get_old_InterfaceDeclaration_IStream());
74
- use_old_InterfaceDeclaration_IStream(get_current_InterfaceDeclaration_IStream());
75
- use_current_TypeAliasDeclaration_IStreamResult(get_old_TypeAliasDeclaration_IStreamResult());
76
- use_old_TypeAliasDeclaration_IStreamResult(get_current_TypeAliasDeclaration_IStreamResult());
77
- use_current_InterfaceDeclaration_ISummaryContext(get_old_InterfaceDeclaration_ISummaryContext());
78
- use_old_InterfaceDeclaration_ISummaryContext(get_current_InterfaceDeclaration_ISummaryContext());
79
- use_current_InterfaceDeclaration_IThrottlingWarning(get_old_InterfaceDeclaration_IThrottlingWarning());
80
- use_old_InterfaceDeclaration_IThrottlingWarning(
81
- // @ts-expect-error compatibility expected to be broken
82
- get_current_InterfaceDeclaration_IThrottlingWarning());
83
- use_current_InterfaceDeclaration_IUrlResolver(get_old_InterfaceDeclaration_IUrlResolver());
84
- use_old_InterfaceDeclaration_IUrlResolver(get_current_InterfaceDeclaration_IUrlResolver());
85
- use_current_InterfaceDeclaration_IWebResolvedUrl(get_old_InterfaceDeclaration_IWebResolvedUrl());
86
- use_old_InterfaceDeclaration_IWebResolvedUrl(get_current_InterfaceDeclaration_IWebResolvedUrl());
87
- use_current_EnumDeclaration_LoaderCachingPolicy(get_old_EnumDeclaration_LoaderCachingPolicy());
88
- use_old_EnumDeclaration_LoaderCachingPolicy(get_current_EnumDeclaration_LoaderCachingPolicy());
89
- export {};
90
- //# sourceMappingURL=validate0.39.8.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"validate0.39.8.js","sourceRoot":"","sources":["../../../src/test/types/validate0.39.8.ts"],"names":[],"mappings":"AAoBA,4CAA4C,CACxC,wCAAwC,EAAE,CAAC,CAAC;AAWhD,wCAAwC;AACpC,uDAAuD;AACvD,4CAA4C,EAAE,CAAC,CAAC;AAWpD,2CAA2C,CACvC,uCAAuC,EAAE,CAAC,CAAC;AAW/C,uCAAuC;AACnC,uDAAuD;AACvD,2CAA2C,EAAE,CAAC,CAAC;AAWnD,wCAAwC,CACpC,oCAAoC,EAAE,CAAC,CAAC;AAW5C,oCAAoC,CAChC,wCAAwC,EAAE,CAAC,CAAC;AAWhD,mDAAmD,CAC/C,+CAA+C,EAAE,CAAC,CAAC;AAWvD,+CAA+C;AAC3C,uDAAuD;AACvD,mDAAmD,EAAE,CAAC,CAAC;AAW3D,oDAAoD,CAChD,gDAAgD,EAAE,CAAC,CAAC;AAWxD,gDAAgD;AAC5C,uDAAuD;AACvD,oDAAoD,EAAE,CAAC,CAAC;AAW5D,mDAAmD,CAC/C,+CAA+C,EAAE,CAAC,CAAC;AAWvD,+CAA+C,CAC3C,mDAAmD,EAAE,CAAC,CAAC;AAW3D,qDAAqD,CACjD,iDAAiD,EAAE,CAAC,CAAC;AAWzD,iDAAiD,CAC7C,qDAAqD,EAAE,CAAC,CAAC;AAW7D,yDAAyD;AACrD,uDAAuD;AACvD,qDAAqD,EAAE,CAAC,CAAC;AAW7D,qDAAqD;AACjD,uDAAuD;AACvD,yDAAyD,EAAE,CAAC,CAAC;AAWjE,+DAA+D,CAC3D,2DAA2D,EAAE,CAAC,CAAC;AAWnE,2DAA2D,CACvD,+DAA+D,EAAE,CAAC,CAAC;AAWvE,6DAA6D,CACzD,yDAAyD,EAAE,CAAC,CAAC;AAWjE,yDAAyD,CACrD,6DAA6D,EAAE,CAAC,CAAC;AAWrE,iDAAiD;AAC7C,uDAAuD;AACvD,6CAA6C,EAAE,CAAC,CAAC;AAWrD,6CAA6C;AACzC,uDAAuD;AACvD,iDAAiD,EAAE,CAAC,CAAC;AAWzD,wDAAwD;AACpD,uDAAuD;AACvD,oDAAoD,EAAE,CAAC,CAAC;AAW5D,oDAAoD;AAChD,uDAAuD;AACvD,wDAAwD,EAAE,CAAC,CAAC;AAWhE,yDAAyD,CACrD,qDAAqD,EAAE,CAAC,CAAC;AAW7D,qDAAqD,CACjD,yDAAyD,EAAE,CAAC,CAAC;AAWjE,wDAAwD,CACpD,oDAAoD,EAAE,CAAC,CAAC;AAW5D,oDAAoD;AAChD,uDAAuD;AACvD,wDAAwD,EAAE,CAAC,CAAC;AAWhE,gEAAgE,CAC5D,4DAA4D,EAAE,CAAC,CAAC;AAWpE,4DAA4D,CACxD,gEAAgE,EAAE,CAAC,CAAC;AAWxE,kDAAkD,CAC9C,8CAA8C,EAAE,CAAC,CAAC;AAWtD,8CAA8C;AAC1C,uDAAuD;AACvD,kDAAkD,EAAE,CAAC,CAAC;AAW1D,iDAAiD,CAC7C,6CAA6C,EAAE,CAAC,CAAC;AAWrD,6CAA6C;AACzC,uDAAuD;AACvD,iDAAiD,EAAE,CAAC,CAAC;AAWzD,8CAA8C,CAC1C,0CAA0C,EAAE,CAAC,CAAC;AAWlD,0CAA0C,CACtC,8CAA8C,EAAE,CAAC,CAAC;AAWtD,kDAAkD,CAC9C,8CAA8C,EAAE,CAAC,CAAC;AAWtD,8CAA8C,CAC1C,kDAAkD,EAAE,CAAC,CAAC;AAW1D,qDAAqD,CACjD,iDAAiD,EAAE,CAAC,CAAC;AAWzD,iDAAiD;AAC7C,uDAAuD;AACvD,qDAAqD,EAAE,CAAC,CAAC;AAW7D,6CAA6C,CACzC,yCAAyC,EAAE,CAAC,CAAC;AAWjD,yCAAyC,CACrC,6CAA6C,EAAE,CAAC,CAAC;AAWrD,iDAAiD,CAC7C,6CAA6C,EAAE,CAAC,CAAC;AAWrD,6CAA6C,CACzC,iDAAiD,EAAE,CAAC,CAAC;AAWzD,wCAAwC,CACpC,oCAAoC,EAAE,CAAC,CAAC;AAW5C,oCAAoC,CAChC,wCAAwC,EAAE,CAAC,CAAC;AAWhD,8CAA8C,CAC1C,0CAA0C,EAAE,CAAC,CAAC;AAWlD,0CAA0C,CACtC,8CAA8C,EAAE,CAAC,CAAC;AAWtD,gDAAgD,CAC5C,4CAA4C,EAAE,CAAC,CAAC;AAWpD,4CAA4C,CACxC,gDAAgD,EAAE,CAAC,CAAC;AAWxD,mDAAmD,CAC/C,+CAA+C,EAAE,CAAC,CAAC;AAWvD,+CAA+C;AAC3C,uDAAuD;AACvD,mDAAmD,EAAE,CAAC,CAAC;AAW3D,6CAA6C,CACzC,yCAAyC,EAAE,CAAC,CAAC;AAWjD,yCAAyC,CACrC,6CAA6C,EAAE,CAAC,CAAC;AAWrD,gDAAgD,CAC5C,4CAA4C,EAAE,CAAC,CAAC;AAWpD,4CAA4C,CACxC,gDAAgD,EAAE,CAAC,CAAC;AAWxD,+CAA+C,CAC3C,2CAA2C,EAAE,CAAC,CAAC;AAWnD,2CAA2C,CACvC,+CAA+C,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-validator in @fluidframework/build-tools.\n */\nimport * as old from \"@fluidframework/driver-definitions-0.39.8\";\nimport * as current from \"../../index\";\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.0.39.8:\n* \"TypeAliasDeclaration_DriverError\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_TypeAliasDeclaration_DriverError():\n old.DriverError;\ndeclare function use_current_TypeAliasDeclaration_DriverError(\n use: current.DriverError);\nuse_current_TypeAliasDeclaration_DriverError(\n get_old_TypeAliasDeclaration_DriverError());\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.0.39.8:\n* \"TypeAliasDeclaration_DriverError\": {\"backCompat\": false}\n*/\ndeclare function get_current_TypeAliasDeclaration_DriverError():\n current.DriverError;\ndeclare function use_old_TypeAliasDeclaration_DriverError(\n use: old.DriverError);\nuse_old_TypeAliasDeclaration_DriverError(\n // @ts-expect-error compatibility expected to be broken\n get_current_TypeAliasDeclaration_DriverError());\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.0.39.8:\n* \"EnumDeclaration_DriverErrorType\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_EnumDeclaration_DriverErrorType():\n old.DriverErrorType;\ndeclare function use_current_EnumDeclaration_DriverErrorType(\n use: current.DriverErrorType);\nuse_current_EnumDeclaration_DriverErrorType(\n get_old_EnumDeclaration_DriverErrorType());\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.0.39.8:\n* \"EnumDeclaration_DriverErrorType\": {\"backCompat\": false}\n*/\ndeclare function get_current_EnumDeclaration_DriverErrorType():\n current.DriverErrorType;\ndeclare function use_old_EnumDeclaration_DriverErrorType(\n use: old.DriverErrorType);\nuse_old_EnumDeclaration_DriverErrorType(\n // @ts-expect-error compatibility expected to be broken\n get_current_EnumDeclaration_DriverErrorType());\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.0.39.8:\n* \"EnumDeclaration_DriverHeader\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_EnumDeclaration_DriverHeader():\n old.DriverHeader;\ndeclare function use_current_EnumDeclaration_DriverHeader(\n use: current.DriverHeader);\nuse_current_EnumDeclaration_DriverHeader(\n get_old_EnumDeclaration_DriverHeader());\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.0.39.8:\n* \"EnumDeclaration_DriverHeader\": {\"backCompat\": false}\n*/\ndeclare function get_current_EnumDeclaration_DriverHeader():\n current.DriverHeader;\ndeclare function use_old_EnumDeclaration_DriverHeader(\n use: old.DriverHeader);\nuse_old_EnumDeclaration_DriverHeader(\n get_current_EnumDeclaration_DriverHeader());\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.0.39.8:\n* \"InterfaceDeclaration_DriverPreCheckInfo\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_DriverPreCheckInfo():\n old.DriverPreCheckInfo;\ndeclare function use_current_InterfaceDeclaration_DriverPreCheckInfo(\n use: current.DriverPreCheckInfo);\nuse_current_InterfaceDeclaration_DriverPreCheckInfo(\n get_old_InterfaceDeclaration_DriverPreCheckInfo());\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.0.39.8:\n* \"InterfaceDeclaration_DriverPreCheckInfo\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_DriverPreCheckInfo():\n current.DriverPreCheckInfo;\ndeclare function use_old_InterfaceDeclaration_DriverPreCheckInfo(\n use: old.DriverPreCheckInfo);\nuse_old_InterfaceDeclaration_DriverPreCheckInfo(\n // @ts-expect-error compatibility expected to be broken\n get_current_InterfaceDeclaration_DriverPreCheckInfo());\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.0.39.8:\n* \"InterfaceDeclaration_IAuthorizationError\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IAuthorizationError():\n old.IAuthorizationError;\ndeclare function use_current_InterfaceDeclaration_IAuthorizationError(\n use: current.IAuthorizationError);\nuse_current_InterfaceDeclaration_IAuthorizationError(\n get_old_InterfaceDeclaration_IAuthorizationError());\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.0.39.8:\n* \"InterfaceDeclaration_IAuthorizationError\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IAuthorizationError():\n current.IAuthorizationError;\ndeclare function use_old_InterfaceDeclaration_IAuthorizationError(\n use: old.IAuthorizationError);\nuse_old_InterfaceDeclaration_IAuthorizationError(\n // @ts-expect-error compatibility expected to be broken\n get_current_InterfaceDeclaration_IAuthorizationError());\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.0.39.8:\n* \"InterfaceDeclaration_IDeltasFetchResult\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IDeltasFetchResult():\n old.IDeltasFetchResult;\ndeclare function use_current_InterfaceDeclaration_IDeltasFetchResult(\n use: current.IDeltasFetchResult);\nuse_current_InterfaceDeclaration_IDeltasFetchResult(\n get_old_InterfaceDeclaration_IDeltasFetchResult());\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.0.39.8:\n* \"InterfaceDeclaration_IDeltasFetchResult\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IDeltasFetchResult():\n current.IDeltasFetchResult;\ndeclare function use_old_InterfaceDeclaration_IDeltasFetchResult(\n use: old.IDeltasFetchResult);\nuse_old_InterfaceDeclaration_IDeltasFetchResult(\n get_current_InterfaceDeclaration_IDeltasFetchResult());\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.0.39.8:\n* \"InterfaceDeclaration_IDeltaStorageService\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IDeltaStorageService():\n old.IDeltaStorageService;\ndeclare function use_current_InterfaceDeclaration_IDeltaStorageService(\n use: current.IDeltaStorageService);\nuse_current_InterfaceDeclaration_IDeltaStorageService(\n get_old_InterfaceDeclaration_IDeltaStorageService());\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.0.39.8:\n* \"InterfaceDeclaration_IDeltaStorageService\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IDeltaStorageService():\n current.IDeltaStorageService;\ndeclare function use_old_InterfaceDeclaration_IDeltaStorageService(\n use: old.IDeltaStorageService);\nuse_old_InterfaceDeclaration_IDeltaStorageService(\n get_current_InterfaceDeclaration_IDeltaStorageService());\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.0.39.8:\n* \"InterfaceDeclaration_IDocumentDeltaConnection\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IDocumentDeltaConnection():\n old.IDocumentDeltaConnection;\ndeclare function use_current_InterfaceDeclaration_IDocumentDeltaConnection(\n use: current.IDocumentDeltaConnection);\nuse_current_InterfaceDeclaration_IDocumentDeltaConnection(\n // @ts-expect-error compatibility expected to be broken\n get_old_InterfaceDeclaration_IDocumentDeltaConnection());\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.0.39.8:\n* \"InterfaceDeclaration_IDocumentDeltaConnection\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IDocumentDeltaConnection():\n current.IDocumentDeltaConnection;\ndeclare function use_old_InterfaceDeclaration_IDocumentDeltaConnection(\n use: old.IDocumentDeltaConnection);\nuse_old_InterfaceDeclaration_IDocumentDeltaConnection(\n // @ts-expect-error compatibility expected to be broken\n get_current_InterfaceDeclaration_IDocumentDeltaConnection());\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.0.39.8:\n* \"InterfaceDeclaration_IDocumentDeltaConnectionEvents\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IDocumentDeltaConnectionEvents():\n old.IDocumentDeltaConnectionEvents;\ndeclare function use_current_InterfaceDeclaration_IDocumentDeltaConnectionEvents(\n use: current.IDocumentDeltaConnectionEvents);\nuse_current_InterfaceDeclaration_IDocumentDeltaConnectionEvents(\n get_old_InterfaceDeclaration_IDocumentDeltaConnectionEvents());\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.0.39.8:\n* \"InterfaceDeclaration_IDocumentDeltaConnectionEvents\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IDocumentDeltaConnectionEvents():\n current.IDocumentDeltaConnectionEvents;\ndeclare function use_old_InterfaceDeclaration_IDocumentDeltaConnectionEvents(\n use: old.IDocumentDeltaConnectionEvents);\nuse_old_InterfaceDeclaration_IDocumentDeltaConnectionEvents(\n get_current_InterfaceDeclaration_IDocumentDeltaConnectionEvents());\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.0.39.8:\n* \"InterfaceDeclaration_IDocumentDeltaStorageService\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IDocumentDeltaStorageService():\n old.IDocumentDeltaStorageService;\ndeclare function use_current_InterfaceDeclaration_IDocumentDeltaStorageService(\n use: current.IDocumentDeltaStorageService);\nuse_current_InterfaceDeclaration_IDocumentDeltaStorageService(\n get_old_InterfaceDeclaration_IDocumentDeltaStorageService());\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.0.39.8:\n* \"InterfaceDeclaration_IDocumentDeltaStorageService\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IDocumentDeltaStorageService():\n current.IDocumentDeltaStorageService;\ndeclare function use_old_InterfaceDeclaration_IDocumentDeltaStorageService(\n use: old.IDocumentDeltaStorageService);\nuse_old_InterfaceDeclaration_IDocumentDeltaStorageService(\n get_current_InterfaceDeclaration_IDocumentDeltaStorageService());\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.0.39.8:\n* \"InterfaceDeclaration_IDocumentService\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IDocumentService():\n old.IDocumentService;\ndeclare function use_current_InterfaceDeclaration_IDocumentService(\n use: current.IDocumentService);\nuse_current_InterfaceDeclaration_IDocumentService(\n // @ts-expect-error compatibility expected to be broken\n get_old_InterfaceDeclaration_IDocumentService());\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.0.39.8:\n* \"InterfaceDeclaration_IDocumentService\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IDocumentService():\n current.IDocumentService;\ndeclare function use_old_InterfaceDeclaration_IDocumentService(\n use: old.IDocumentService);\nuse_old_InterfaceDeclaration_IDocumentService(\n // @ts-expect-error compatibility expected to be broken\n get_current_InterfaceDeclaration_IDocumentService());\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.0.39.8:\n* \"InterfaceDeclaration_IDocumentServiceFactory\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IDocumentServiceFactory():\n old.IDocumentServiceFactory;\ndeclare function use_current_InterfaceDeclaration_IDocumentServiceFactory(\n use: current.IDocumentServiceFactory);\nuse_current_InterfaceDeclaration_IDocumentServiceFactory(\n // @ts-expect-error compatibility expected to be broken\n get_old_InterfaceDeclaration_IDocumentServiceFactory());\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.0.39.8:\n* \"InterfaceDeclaration_IDocumentServiceFactory\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IDocumentServiceFactory():\n current.IDocumentServiceFactory;\ndeclare function use_old_InterfaceDeclaration_IDocumentServiceFactory(\n use: old.IDocumentServiceFactory);\nuse_old_InterfaceDeclaration_IDocumentServiceFactory(\n // @ts-expect-error compatibility expected to be broken\n get_current_InterfaceDeclaration_IDocumentServiceFactory());\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.0.39.8:\n* \"InterfaceDeclaration_IDocumentServicePolicies\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IDocumentServicePolicies():\n old.IDocumentServicePolicies;\ndeclare function use_current_InterfaceDeclaration_IDocumentServicePolicies(\n use: current.IDocumentServicePolicies);\nuse_current_InterfaceDeclaration_IDocumentServicePolicies(\n get_old_InterfaceDeclaration_IDocumentServicePolicies());\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.0.39.8:\n* \"InterfaceDeclaration_IDocumentServicePolicies\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IDocumentServicePolicies():\n current.IDocumentServicePolicies;\ndeclare function use_old_InterfaceDeclaration_IDocumentServicePolicies(\n use: old.IDocumentServicePolicies);\nuse_old_InterfaceDeclaration_IDocumentServicePolicies(\n get_current_InterfaceDeclaration_IDocumentServicePolicies());\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.0.39.8:\n* \"InterfaceDeclaration_IDocumentStorageService\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IDocumentStorageService():\n old.IDocumentStorageService;\ndeclare function use_current_InterfaceDeclaration_IDocumentStorageService(\n use: current.IDocumentStorageService);\nuse_current_InterfaceDeclaration_IDocumentStorageService(\n get_old_InterfaceDeclaration_IDocumentStorageService());\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.0.39.8:\n* \"InterfaceDeclaration_IDocumentStorageService\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IDocumentStorageService():\n current.IDocumentStorageService;\ndeclare function use_old_InterfaceDeclaration_IDocumentStorageService(\n use: old.IDocumentStorageService);\nuse_old_InterfaceDeclaration_IDocumentStorageService(\n // @ts-expect-error compatibility expected to be broken\n get_current_InterfaceDeclaration_IDocumentStorageService());\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.0.39.8:\n* \"InterfaceDeclaration_IDocumentStorageServicePolicies\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IDocumentStorageServicePolicies():\n old.IDocumentStorageServicePolicies;\ndeclare function use_current_InterfaceDeclaration_IDocumentStorageServicePolicies(\n use: current.IDocumentStorageServicePolicies);\nuse_current_InterfaceDeclaration_IDocumentStorageServicePolicies(\n get_old_InterfaceDeclaration_IDocumentStorageServicePolicies());\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.0.39.8:\n* \"InterfaceDeclaration_IDocumentStorageServicePolicies\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IDocumentStorageServicePolicies():\n current.IDocumentStorageServicePolicies;\ndeclare function use_old_InterfaceDeclaration_IDocumentStorageServicePolicies(\n use: old.IDocumentStorageServicePolicies);\nuse_old_InterfaceDeclaration_IDocumentStorageServicePolicies(\n get_current_InterfaceDeclaration_IDocumentStorageServicePolicies());\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.0.39.8:\n* \"InterfaceDeclaration_IDriverBasicError\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IDriverBasicError():\n old.IDriverBasicError;\ndeclare function use_current_InterfaceDeclaration_IDriverBasicError(\n use: current.IDriverBasicError);\nuse_current_InterfaceDeclaration_IDriverBasicError(\n get_old_InterfaceDeclaration_IDriverBasicError());\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.0.39.8:\n* \"InterfaceDeclaration_IDriverBasicError\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IDriverBasicError():\n current.IDriverBasicError;\ndeclare function use_old_InterfaceDeclaration_IDriverBasicError(\n use: old.IDriverBasicError);\nuse_old_InterfaceDeclaration_IDriverBasicError(\n // @ts-expect-error compatibility expected to be broken\n get_current_InterfaceDeclaration_IDriverBasicError());\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.0.39.8:\n* \"InterfaceDeclaration_IDriverErrorBase\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IDriverErrorBase():\n old.IDriverErrorBase;\ndeclare function use_current_InterfaceDeclaration_IDriverErrorBase(\n use: current.IDriverErrorBase);\nuse_current_InterfaceDeclaration_IDriverErrorBase(\n get_old_InterfaceDeclaration_IDriverErrorBase());\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.0.39.8:\n* \"InterfaceDeclaration_IDriverErrorBase\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IDriverErrorBase():\n current.IDriverErrorBase;\ndeclare function use_old_InterfaceDeclaration_IDriverErrorBase(\n use: old.IDriverErrorBase);\nuse_old_InterfaceDeclaration_IDriverErrorBase(\n // @ts-expect-error compatibility expected to be broken\n get_current_InterfaceDeclaration_IDriverErrorBase());\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.0.39.8:\n* \"InterfaceDeclaration_IDriverHeader\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IDriverHeader():\n old.IDriverHeader;\ndeclare function use_current_InterfaceDeclaration_IDriverHeader(\n use: current.IDriverHeader);\nuse_current_InterfaceDeclaration_IDriverHeader(\n get_old_InterfaceDeclaration_IDriverHeader());\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.0.39.8:\n* \"InterfaceDeclaration_IDriverHeader\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IDriverHeader():\n current.IDriverHeader;\ndeclare function use_old_InterfaceDeclaration_IDriverHeader(\n use: old.IDriverHeader);\nuse_old_InterfaceDeclaration_IDriverHeader(\n get_current_InterfaceDeclaration_IDriverHeader());\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.0.39.8:\n* \"InterfaceDeclaration_IFluidResolvedUrl\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidResolvedUrl():\n old.IFluidResolvedUrl;\ndeclare function use_current_InterfaceDeclaration_IFluidResolvedUrl(\n use: current.IFluidResolvedUrl);\nuse_current_InterfaceDeclaration_IFluidResolvedUrl(\n get_old_InterfaceDeclaration_IFluidResolvedUrl());\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.0.39.8:\n* \"InterfaceDeclaration_IFluidResolvedUrl\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidResolvedUrl():\n current.IFluidResolvedUrl;\ndeclare function use_old_InterfaceDeclaration_IFluidResolvedUrl(\n use: old.IFluidResolvedUrl);\nuse_old_InterfaceDeclaration_IFluidResolvedUrl(\n get_current_InterfaceDeclaration_IFluidResolvedUrl());\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.0.39.8:\n* \"InterfaceDeclaration_IGenericNetworkError\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IGenericNetworkError():\n old.IGenericNetworkError;\ndeclare function use_current_InterfaceDeclaration_IGenericNetworkError(\n use: current.IGenericNetworkError);\nuse_current_InterfaceDeclaration_IGenericNetworkError(\n get_old_InterfaceDeclaration_IGenericNetworkError());\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.0.39.8:\n* \"InterfaceDeclaration_IGenericNetworkError\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IGenericNetworkError():\n current.IGenericNetworkError;\ndeclare function use_old_InterfaceDeclaration_IGenericNetworkError(\n use: old.IGenericNetworkError);\nuse_old_InterfaceDeclaration_IGenericNetworkError(\n // @ts-expect-error compatibility expected to be broken\n get_current_InterfaceDeclaration_IGenericNetworkError());\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.0.39.8:\n* \"TypeAliasDeclaration_IResolvedUrl\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_TypeAliasDeclaration_IResolvedUrl():\n old.IResolvedUrl;\ndeclare function use_current_TypeAliasDeclaration_IResolvedUrl(\n use: current.IResolvedUrl);\nuse_current_TypeAliasDeclaration_IResolvedUrl(\n get_old_TypeAliasDeclaration_IResolvedUrl());\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.0.39.8:\n* \"TypeAliasDeclaration_IResolvedUrl\": {\"backCompat\": false}\n*/\ndeclare function get_current_TypeAliasDeclaration_IResolvedUrl():\n current.IResolvedUrl;\ndeclare function use_old_TypeAliasDeclaration_IResolvedUrl(\n use: old.IResolvedUrl);\nuse_old_TypeAliasDeclaration_IResolvedUrl(\n get_current_TypeAliasDeclaration_IResolvedUrl());\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.0.39.8:\n* \"InterfaceDeclaration_IResolvedUrlBase\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IResolvedUrlBase():\n old.IResolvedUrlBase;\ndeclare function use_current_InterfaceDeclaration_IResolvedUrlBase(\n use: current.IResolvedUrlBase);\nuse_current_InterfaceDeclaration_IResolvedUrlBase(\n get_old_InterfaceDeclaration_IResolvedUrlBase());\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.0.39.8:\n* \"InterfaceDeclaration_IResolvedUrlBase\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IResolvedUrlBase():\n current.IResolvedUrlBase;\ndeclare function use_old_InterfaceDeclaration_IResolvedUrlBase(\n use: old.IResolvedUrlBase);\nuse_old_InterfaceDeclaration_IResolvedUrlBase(\n get_current_InterfaceDeclaration_IResolvedUrlBase());\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.0.39.8:\n* \"InterfaceDeclaration_IStream\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IStream():\n old.IStream<any>;\ndeclare function use_current_InterfaceDeclaration_IStream(\n use: current.IStream<any>);\nuse_current_InterfaceDeclaration_IStream(\n get_old_InterfaceDeclaration_IStream());\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.0.39.8:\n* \"InterfaceDeclaration_IStream\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IStream():\n current.IStream<any>;\ndeclare function use_old_InterfaceDeclaration_IStream(\n use: old.IStream<any>);\nuse_old_InterfaceDeclaration_IStream(\n get_current_InterfaceDeclaration_IStream());\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.0.39.8:\n* \"TypeAliasDeclaration_IStreamResult\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_TypeAliasDeclaration_IStreamResult():\n old.IStreamResult<any>;\ndeclare function use_current_TypeAliasDeclaration_IStreamResult(\n use: current.IStreamResult<any>);\nuse_current_TypeAliasDeclaration_IStreamResult(\n get_old_TypeAliasDeclaration_IStreamResult());\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.0.39.8:\n* \"TypeAliasDeclaration_IStreamResult\": {\"backCompat\": false}\n*/\ndeclare function get_current_TypeAliasDeclaration_IStreamResult():\n current.IStreamResult<any>;\ndeclare function use_old_TypeAliasDeclaration_IStreamResult(\n use: old.IStreamResult<any>);\nuse_old_TypeAliasDeclaration_IStreamResult(\n get_current_TypeAliasDeclaration_IStreamResult());\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.0.39.8:\n* \"InterfaceDeclaration_ISummaryContext\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_ISummaryContext():\n old.ISummaryContext;\ndeclare function use_current_InterfaceDeclaration_ISummaryContext(\n use: current.ISummaryContext);\nuse_current_InterfaceDeclaration_ISummaryContext(\n get_old_InterfaceDeclaration_ISummaryContext());\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.0.39.8:\n* \"InterfaceDeclaration_ISummaryContext\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_ISummaryContext():\n current.ISummaryContext;\ndeclare function use_old_InterfaceDeclaration_ISummaryContext(\n use: old.ISummaryContext);\nuse_old_InterfaceDeclaration_ISummaryContext(\n get_current_InterfaceDeclaration_ISummaryContext());\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.0.39.8:\n* \"InterfaceDeclaration_IThrottlingWarning\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IThrottlingWarning():\n old.IThrottlingWarning;\ndeclare function use_current_InterfaceDeclaration_IThrottlingWarning(\n use: current.IThrottlingWarning);\nuse_current_InterfaceDeclaration_IThrottlingWarning(\n get_old_InterfaceDeclaration_IThrottlingWarning());\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.0.39.8:\n* \"InterfaceDeclaration_IThrottlingWarning\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IThrottlingWarning():\n current.IThrottlingWarning;\ndeclare function use_old_InterfaceDeclaration_IThrottlingWarning(\n use: old.IThrottlingWarning);\nuse_old_InterfaceDeclaration_IThrottlingWarning(\n // @ts-expect-error compatibility expected to be broken\n get_current_InterfaceDeclaration_IThrottlingWarning());\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.0.39.8:\n* \"InterfaceDeclaration_IUrlResolver\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IUrlResolver():\n old.IUrlResolver;\ndeclare function use_current_InterfaceDeclaration_IUrlResolver(\n use: current.IUrlResolver);\nuse_current_InterfaceDeclaration_IUrlResolver(\n get_old_InterfaceDeclaration_IUrlResolver());\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.0.39.8:\n* \"InterfaceDeclaration_IUrlResolver\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IUrlResolver():\n current.IUrlResolver;\ndeclare function use_old_InterfaceDeclaration_IUrlResolver(\n use: old.IUrlResolver);\nuse_old_InterfaceDeclaration_IUrlResolver(\n get_current_InterfaceDeclaration_IUrlResolver());\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.0.39.8:\n* \"InterfaceDeclaration_IWebResolvedUrl\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IWebResolvedUrl():\n old.IWebResolvedUrl;\ndeclare function use_current_InterfaceDeclaration_IWebResolvedUrl(\n use: current.IWebResolvedUrl);\nuse_current_InterfaceDeclaration_IWebResolvedUrl(\n get_old_InterfaceDeclaration_IWebResolvedUrl());\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.0.39.8:\n* \"InterfaceDeclaration_IWebResolvedUrl\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IWebResolvedUrl():\n current.IWebResolvedUrl;\ndeclare function use_old_InterfaceDeclaration_IWebResolvedUrl(\n use: old.IWebResolvedUrl);\nuse_old_InterfaceDeclaration_IWebResolvedUrl(\n get_current_InterfaceDeclaration_IWebResolvedUrl());\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.0.39.8:\n* \"EnumDeclaration_LoaderCachingPolicy\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_EnumDeclaration_LoaderCachingPolicy():\n old.LoaderCachingPolicy;\ndeclare function use_current_EnumDeclaration_LoaderCachingPolicy(\n use: current.LoaderCachingPolicy);\nuse_current_EnumDeclaration_LoaderCachingPolicy(\n get_old_EnumDeclaration_LoaderCachingPolicy());\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.0.39.8:\n* \"EnumDeclaration_LoaderCachingPolicy\": {\"backCompat\": false}\n*/\ndeclare function get_current_EnumDeclaration_LoaderCachingPolicy():\n current.LoaderCachingPolicy;\ndeclare function use_old_EnumDeclaration_LoaderCachingPolicy(\n use: old.LoaderCachingPolicy);\nuse_old_EnumDeclaration_LoaderCachingPolicy(\n get_current_EnumDeclaration_LoaderCachingPolicy());\n"]}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=validate0.40.0.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"validate0.40.0.d.ts","sourceRoot":"","sources":["../../../src/test/types/validate0.40.0.ts"],"names":[],"mappings":""}
@@ -1,70 +0,0 @@
1
- use_current_TypeAliasDeclaration_DriverError(get_old_TypeAliasDeclaration_DriverError());
2
- use_old_TypeAliasDeclaration_DriverError(get_current_TypeAliasDeclaration_DriverError());
3
- use_current_EnumDeclaration_DriverErrorType(get_old_EnumDeclaration_DriverErrorType());
4
- use_old_EnumDeclaration_DriverErrorType(get_current_EnumDeclaration_DriverErrorType());
5
- use_current_EnumDeclaration_DriverHeader(get_old_EnumDeclaration_DriverHeader());
6
- use_old_EnumDeclaration_DriverHeader(get_current_EnumDeclaration_DriverHeader());
7
- use_current_InterfaceDeclaration_DriverPreCheckInfo(get_old_InterfaceDeclaration_DriverPreCheckInfo());
8
- use_old_InterfaceDeclaration_DriverPreCheckInfo(
9
- // @ts-expect-error compatibility expected to be broken
10
- get_current_InterfaceDeclaration_DriverPreCheckInfo());
11
- use_current_InterfaceDeclaration_IAuthorizationError(get_old_InterfaceDeclaration_IAuthorizationError());
12
- use_old_InterfaceDeclaration_IAuthorizationError(get_current_InterfaceDeclaration_IAuthorizationError());
13
- use_current_InterfaceDeclaration_IDeltasFetchResult(get_old_InterfaceDeclaration_IDeltasFetchResult());
14
- use_old_InterfaceDeclaration_IDeltasFetchResult(get_current_InterfaceDeclaration_IDeltasFetchResult());
15
- use_current_InterfaceDeclaration_IDeltaStorageService(get_old_InterfaceDeclaration_IDeltaStorageService());
16
- use_old_InterfaceDeclaration_IDeltaStorageService(get_current_InterfaceDeclaration_IDeltaStorageService());
17
- use_current_InterfaceDeclaration_IDocumentDeltaConnection(get_old_InterfaceDeclaration_IDocumentDeltaConnection());
18
- use_old_InterfaceDeclaration_IDocumentDeltaConnection(
19
- // @ts-expect-error compatibility expected to be broken
20
- get_current_InterfaceDeclaration_IDocumentDeltaConnection());
21
- use_current_InterfaceDeclaration_IDocumentDeltaConnectionEvents(get_old_InterfaceDeclaration_IDocumentDeltaConnectionEvents());
22
- use_old_InterfaceDeclaration_IDocumentDeltaConnectionEvents(get_current_InterfaceDeclaration_IDocumentDeltaConnectionEvents());
23
- use_current_InterfaceDeclaration_IDocumentDeltaStorageService(get_old_InterfaceDeclaration_IDocumentDeltaStorageService());
24
- use_old_InterfaceDeclaration_IDocumentDeltaStorageService(get_current_InterfaceDeclaration_IDocumentDeltaStorageService());
25
- use_current_InterfaceDeclaration_IDocumentService(get_old_InterfaceDeclaration_IDocumentService());
26
- use_old_InterfaceDeclaration_IDocumentService(
27
- // @ts-expect-error compatibility expected to be broken
28
- get_current_InterfaceDeclaration_IDocumentService());
29
- use_current_InterfaceDeclaration_IDocumentServiceFactory(get_old_InterfaceDeclaration_IDocumentServiceFactory());
30
- use_old_InterfaceDeclaration_IDocumentServiceFactory(
31
- // @ts-expect-error compatibility expected to be broken
32
- get_current_InterfaceDeclaration_IDocumentServiceFactory());
33
- use_current_InterfaceDeclaration_IDocumentServicePolicies(get_old_InterfaceDeclaration_IDocumentServicePolicies());
34
- use_old_InterfaceDeclaration_IDocumentServicePolicies(get_current_InterfaceDeclaration_IDocumentServicePolicies());
35
- use_current_InterfaceDeclaration_IDocumentStorageService(get_old_InterfaceDeclaration_IDocumentStorageService());
36
- use_old_InterfaceDeclaration_IDocumentStorageService(
37
- // @ts-expect-error compatibility expected to be broken
38
- get_current_InterfaceDeclaration_IDocumentStorageService());
39
- use_current_InterfaceDeclaration_IDocumentStorageServicePolicies(get_old_InterfaceDeclaration_IDocumentStorageServicePolicies());
40
- use_old_InterfaceDeclaration_IDocumentStorageServicePolicies(get_current_InterfaceDeclaration_IDocumentStorageServicePolicies());
41
- use_current_InterfaceDeclaration_IDriverBasicError(get_old_InterfaceDeclaration_IDriverBasicError());
42
- use_old_InterfaceDeclaration_IDriverBasicError(get_current_InterfaceDeclaration_IDriverBasicError());
43
- use_current_InterfaceDeclaration_IDriverErrorBase(get_old_InterfaceDeclaration_IDriverErrorBase());
44
- use_old_InterfaceDeclaration_IDriverErrorBase(get_current_InterfaceDeclaration_IDriverErrorBase());
45
- use_current_InterfaceDeclaration_IDriverHeader(get_old_InterfaceDeclaration_IDriverHeader());
46
- use_old_InterfaceDeclaration_IDriverHeader(get_current_InterfaceDeclaration_IDriverHeader());
47
- use_current_InterfaceDeclaration_IFluidResolvedUrl(get_old_InterfaceDeclaration_IFluidResolvedUrl());
48
- use_old_InterfaceDeclaration_IFluidResolvedUrl(get_current_InterfaceDeclaration_IFluidResolvedUrl());
49
- use_current_InterfaceDeclaration_IGenericNetworkError(get_old_InterfaceDeclaration_IGenericNetworkError());
50
- use_old_InterfaceDeclaration_IGenericNetworkError(get_current_InterfaceDeclaration_IGenericNetworkError());
51
- use_current_TypeAliasDeclaration_IResolvedUrl(get_old_TypeAliasDeclaration_IResolvedUrl());
52
- use_old_TypeAliasDeclaration_IResolvedUrl(get_current_TypeAliasDeclaration_IResolvedUrl());
53
- use_current_InterfaceDeclaration_IResolvedUrlBase(get_old_InterfaceDeclaration_IResolvedUrlBase());
54
- use_old_InterfaceDeclaration_IResolvedUrlBase(get_current_InterfaceDeclaration_IResolvedUrlBase());
55
- use_current_InterfaceDeclaration_IStream(get_old_InterfaceDeclaration_IStream());
56
- use_old_InterfaceDeclaration_IStream(get_current_InterfaceDeclaration_IStream());
57
- use_current_TypeAliasDeclaration_IStreamResult(get_old_TypeAliasDeclaration_IStreamResult());
58
- use_old_TypeAliasDeclaration_IStreamResult(get_current_TypeAliasDeclaration_IStreamResult());
59
- use_current_InterfaceDeclaration_ISummaryContext(get_old_InterfaceDeclaration_ISummaryContext());
60
- use_old_InterfaceDeclaration_ISummaryContext(get_current_InterfaceDeclaration_ISummaryContext());
61
- use_current_InterfaceDeclaration_IThrottlingWarning(get_old_InterfaceDeclaration_IThrottlingWarning());
62
- use_old_InterfaceDeclaration_IThrottlingWarning(get_current_InterfaceDeclaration_IThrottlingWarning());
63
- use_current_InterfaceDeclaration_IUrlResolver(get_old_InterfaceDeclaration_IUrlResolver());
64
- use_old_InterfaceDeclaration_IUrlResolver(get_current_InterfaceDeclaration_IUrlResolver());
65
- use_current_InterfaceDeclaration_IWebResolvedUrl(get_old_InterfaceDeclaration_IWebResolvedUrl());
66
- use_old_InterfaceDeclaration_IWebResolvedUrl(get_current_InterfaceDeclaration_IWebResolvedUrl());
67
- use_current_EnumDeclaration_LoaderCachingPolicy(get_old_EnumDeclaration_LoaderCachingPolicy());
68
- use_old_EnumDeclaration_LoaderCachingPolicy(get_current_EnumDeclaration_LoaderCachingPolicy());
69
- export {};
70
- //# sourceMappingURL=validate0.40.0.js.map