@fluidframework/core-interfaces 2.0.0-dev.1.4.6.106135 → 2.0.0-dev.2.2.0.111723

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/.eslintrc.js CHANGED
@@ -5,6 +5,7 @@
5
5
 
6
6
  module.exports = {
7
7
  "extends": [
8
- "@fluidframework/eslint-config-fluid"
8
+ require.resolve("@fluidframework/eslint-config-fluid"),
9
+ "prettier"
9
10
  ]
10
11
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3
- "extends": "@fluidframework/build-common/api-extractor-common-report.json"
3
+ "extends": "@fluidframework/build-common/api-extractor-common-strict.json"
4
4
  }
package/dist/handles.d.ts CHANGED
@@ -10,7 +10,7 @@ export interface IProvideFluidHandleContext {
10
10
  readonly IFluidHandleContext: IFluidHandleContext;
11
11
  }
12
12
  /**
13
- * An IFluidHandleContext describes a routing context from which other IFluidHandleContexts are defined
13
+ * Describes a routing context from which other `IFluidHandleContext`s are defined.
14
14
  */
15
15
  export interface IFluidHandleContext extends IProvideFluidHandleContext {
16
16
  /**
@@ -37,7 +37,7 @@ export interface IProvideFluidHandle {
37
37
  readonly IFluidHandle: IFluidHandle;
38
38
  }
39
39
  /**
40
- * Handle to a shared FluidObject
40
+ * Handle to a shared {@link FluidObject}.
41
41
  */
42
42
  export interface IFluidHandle<T = FluidObject & IFluidLoadable> extends IProvideFluidHandle {
43
43
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"handles.js","sourceRoot":"","sources":["../src/handles.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAMU,QAAA,mBAAmB,GAAqC,qBAAqB,CAAC;AAkC9E,QAAA,YAAY,GAA8B,cAAc,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { IRequest, IResponse } from \"./fluidRouter\";\nimport { IFluidLoadable } from \"./fluidLoadable\";\nimport { FluidObject } from \"./provider\";\n\nexport const IFluidHandleContext: keyof IProvideFluidHandleContext = \"IFluidHandleContext\";\n\nexport interface IProvideFluidHandleContext {\n readonly IFluidHandleContext: IFluidHandleContext;\n}\n\n/**\n * An IFluidHandleContext describes a routing context from which other IFluidHandleContexts are defined\n */\nexport interface IFluidHandleContext extends IProvideFluidHandleContext {\n /**\n * The absolute path to the handle context from the root.\n */\n readonly absolutePath: string;\n\n /**\n * The parent IFluidHandleContext that has provided a route path to this IFluidHandleContext or undefined\n * at the root.\n */\n readonly routeContext?: IFluidHandleContext;\n\n /**\n * Flag indicating whether or not the entity has services attached.\n */\n readonly isAttached: boolean;\n\n /**\n * Runs through the graph and attach the bounded handles.\n */\n attachGraph(): void;\n\n resolveHandle(request: IRequest): Promise<IResponse>;\n}\n\nexport const IFluidHandle: keyof IProvideFluidHandle = \"IFluidHandle\";\n\nexport interface IProvideFluidHandle {\n readonly IFluidHandle: IFluidHandle;\n}\n\n/**\n * Handle to a shared FluidObject\n */\nexport interface IFluidHandle<\n // REVIEW: Constrain `T` to something? How do we support dds and datastores safely?\n T = FluidObject & IFluidLoadable,\n > extends IProvideFluidHandle {\n\n /**\n * @deprecated Do not use handle's path for routing. Use `get` to get the underlying object.\n *\n * The absolute path to the handle context from the root.\n */\n readonly absolutePath: string;\n\n /**\n * Flag indicating whether or not the entity has services attached.\n */\n readonly isAttached: boolean;\n\n /**\n * Runs through the graph and attach the bounded handles.\n */\n attachGraph(): void;\n\n /**\n * Returns a promise to the Fluid Object referenced by the handle.\n */\n get(): Promise<T>;\n\n /**\n * Binds the given handle to this one or attach the given handle if this handle is attached.\n * A bound handle will also be attached once this handle is attached.\n */\n bind(handle: IFluidHandle): void;\n}\n"]}
1
+ {"version":3,"file":"handles.js","sourceRoot":"","sources":["../src/handles.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAMU,QAAA,mBAAmB,GAAqC,qBAAqB,CAAC;AAkC9E,QAAA,YAAY,GAA8B,cAAc,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { IRequest, IResponse } from \"./fluidRouter\";\nimport { IFluidLoadable } from \"./fluidLoadable\";\nimport { FluidObject } from \"./provider\";\n\nexport const IFluidHandleContext: keyof IProvideFluidHandleContext = \"IFluidHandleContext\";\n\nexport interface IProvideFluidHandleContext {\n readonly IFluidHandleContext: IFluidHandleContext;\n}\n\n/**\n * Describes a routing context from which other `IFluidHandleContext`s are defined.\n */\nexport interface IFluidHandleContext extends IProvideFluidHandleContext {\n /**\n * The absolute path to the handle context from the root.\n */\n readonly absolutePath: string;\n\n /**\n * The parent IFluidHandleContext that has provided a route path to this IFluidHandleContext or undefined\n * at the root.\n */\n readonly routeContext?: IFluidHandleContext;\n\n /**\n * Flag indicating whether or not the entity has services attached.\n */\n readonly isAttached: boolean;\n\n /**\n * Runs through the graph and attach the bounded handles.\n */\n attachGraph(): void;\n\n resolveHandle(request: IRequest): Promise<IResponse>;\n}\n\nexport const IFluidHandle: keyof IProvideFluidHandle = \"IFluidHandle\";\n\nexport interface IProvideFluidHandle {\n readonly IFluidHandle: IFluidHandle;\n}\n\n/**\n * Handle to a shared {@link FluidObject}.\n */\nexport interface IFluidHandle<\n // REVIEW: Constrain `T` to something? How do we support dds and datastores safely?\n T = FluidObject & IFluidLoadable,\n > extends IProvideFluidHandle {\n\n /**\n * @deprecated Do not use handle's path for routing. Use `get` to get the underlying object.\n *\n * The absolute path to the handle context from the root.\n */\n readonly absolutePath: string;\n\n /**\n * Flag indicating whether or not the entity has services attached.\n */\n readonly isAttached: boolean;\n\n /**\n * Runs through the graph and attach the bounded handles.\n */\n attachGraph(): void;\n\n /**\n * Returns a promise to the Fluid Object referenced by the handle.\n */\n get(): Promise<T>;\n\n /**\n * Binds the given handle to this one or attach the given handle if this handle is attached.\n * A bound handle will also be attached once this handle is attached.\n */\n bind(handle: IFluidHandle): void;\n}\n"]}
package/dist/index.d.ts CHANGED
@@ -3,9 +3,9 @@
3
3
  * Licensed under the MIT License.
4
4
  */
5
5
  export { IFluidObject } from "./fluidObject";
6
- export * from "./fluidLoadable";
6
+ export { IFluidLoadable, IProvideFluidLoadable, IFluidRunnable, IProvideFluidRunnable, } from "./fluidLoadable";
7
7
  export { IRequest, IRequestHeader, IResponse, IProvideFluidRouter, IFluidRouter, } from "./fluidRouter";
8
- export * from "./handles";
9
- export * from "./fluidPackage";
10
- export * from "./provider";
8
+ export { IFluidHandleContext, IProvideFluidHandleContext, IFluidHandle, IProvideFluidHandle, } from "./handles";
9
+ export { IFluidPackageEnvironment, IFluidPackage, isFluidPackage, IFluidCodeDetailsConfig, IFluidCodeDetails, isFluidCodeDetails, IFluidCodeDetailsComparer, IProvideFluidCodeDetailsComparer, } from "./fluidPackage";
10
+ export { FluidObjectProviderKeys, FluidObject, FluidObjectKeys, } from "./provider";
11
11
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAE7C,cAAc,iBAAiB,CAAC;AAIhC,OAAO,EACH,QAAQ,EACR,cAAc,EACd,SAAS,EACT,mBAAmB,EACnB,YAAY,GACf,MAAM,eAAe,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAE7C,OAAO,EACH,cAAc,EACd,qBAAqB,EACrB,cAAc,EACd,qBAAqB,GACxB,MAAM,iBAAiB,CAAC;AAKzB,OAAO,EACH,QAAQ,EACR,cAAc,EACd,SAAS,EACT,mBAAmB,EACnB,YAAY,GACf,MAAM,eAAe,CAAC;AAEvB,OAAO,EACH,mBAAmB,EACnB,0BAA0B,EAC1B,YAAY,EACZ,mBAAmB,GACtB,MAAM,WAAW,CAAC;AAEnB,OAAO,EACH,wBAAwB,EACxB,aAAa,EACb,cAAc,EACd,uBAAuB,EACvB,iBAAiB,EACjB,kBAAkB,EAClB,yBAAyB,EACzB,gCAAgC,GACnC,MAAM,gBAAgB,CAAC;AAExB,OAAO,EACH,uBAAuB,EACvB,WAAW,EACX,eAAe,GAClB,MAAM,YAAY,CAAC"}
package/dist/index.js CHANGED
@@ -3,25 +3,21 @@
3
3
  * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
4
4
  * Licensed under the MIT License.
5
5
  */
6
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7
- if (k2 === undefined) k2 = k;
8
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
6
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.IFluidRouter = void 0;
18
- __exportStar(require("./fluidLoadable"), exports);
7
+ exports.IFluidCodeDetailsComparer = exports.isFluidCodeDetails = exports.isFluidPackage = exports.IFluidHandle = exports.IFluidHandleContext = exports.IFluidRouter = exports.IFluidRunnable = exports.IFluidLoadable = void 0;
8
+ var fluidLoadable_1 = require("./fluidLoadable");
9
+ Object.defineProperty(exports, "IFluidLoadable", { enumerable: true, get: function () { return fluidLoadable_1.IFluidLoadable; } });
10
+ Object.defineProperty(exports, "IFluidRunnable", { enumerable: true, get: function () { return fluidLoadable_1.IFluidRunnable; } });
19
11
  // Typescript forgets the index signature when customers augment IRequestHeader if we export *.
20
12
  // So we export the explicit members as a workaround:
21
13
  // https://github.com/microsoft/TypeScript/issues/18877#issuecomment-476921038
22
14
  var fluidRouter_1 = require("./fluidRouter");
23
15
  Object.defineProperty(exports, "IFluidRouter", { enumerable: true, get: function () { return fluidRouter_1.IFluidRouter; } });
24
- __exportStar(require("./handles"), exports);
25
- __exportStar(require("./fluidPackage"), exports);
26
- __exportStar(require("./provider"), exports);
16
+ var handles_1 = require("./handles");
17
+ Object.defineProperty(exports, "IFluidHandleContext", { enumerable: true, get: function () { return handles_1.IFluidHandleContext; } });
18
+ Object.defineProperty(exports, "IFluidHandle", { enumerable: true, get: function () { return handles_1.IFluidHandle; } });
19
+ var fluidPackage_1 = require("./fluidPackage");
20
+ Object.defineProperty(exports, "isFluidPackage", { enumerable: true, get: function () { return fluidPackage_1.isFluidPackage; } });
21
+ Object.defineProperty(exports, "isFluidCodeDetails", { enumerable: true, get: function () { return fluidPackage_1.isFluidCodeDetails; } });
22
+ Object.defineProperty(exports, "IFluidCodeDetailsComparer", { enumerable: true, get: function () { return fluidPackage_1.IFluidCodeDetailsComparer; } });
27
23
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;;;;;;;;;;;AAMH,kDAAgC;AAChC,+FAA+F;AAC/F,qDAAqD;AACrD,8EAA8E;AAC9E,6CAMuB;AADnB,2GAAA,YAAY,OAAA;AAEhB,4CAA0B;AAC1B,iDAA+B;AAC/B,6CAA2B","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n// when merging declarations the module path must match exactly. Because of this we need to explicitly export\n// IFluidObject as opposed to an export *\nexport { IFluidObject } from \"./fluidObject\";\n\nexport * from \"./fluidLoadable\";\n// Typescript forgets the index signature when customers augment IRequestHeader if we export *.\n// So we export the explicit members as a workaround:\n// https://github.com/microsoft/TypeScript/issues/18877#issuecomment-476921038\nexport {\n IRequest,\n IRequestHeader,\n IResponse,\n IProvideFluidRouter,\n IFluidRouter,\n} from \"./fluidRouter\";\nexport * from \"./handles\";\nexport * from \"./fluidPackage\";\nexport * from \"./provider\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAMH,iDAKyB;AAJrB,+GAAA,cAAc,OAAA;AAEd,+GAAA,cAAc,OAAA;AAIlB,+FAA+F;AAC/F,qDAAqD;AACrD,8EAA8E;AAC9E,6CAMuB;AADnB,2GAAA,YAAY,OAAA;AAGhB,qCAKmB;AAJf,8GAAA,mBAAmB,OAAA;AAEnB,uGAAA,YAAY,OAAA;AAIhB,+CASwB;AANpB,8GAAA,cAAc,OAAA;AAGd,kHAAA,kBAAkB,OAAA;AAClB,yHAAA,yBAAyB,OAAA","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n// when merging declarations the module path must match exactly. Because of this we need to explicitly export\n// IFluidObject as opposed to an export *\nexport { IFluidObject } from \"./fluidObject\";\n\nexport {\n IFluidLoadable,\n IProvideFluidLoadable,\n IFluidRunnable,\n IProvideFluidRunnable,\n} from \"./fluidLoadable\";\n\n// Typescript forgets the index signature when customers augment IRequestHeader if we export *.\n// So we export the explicit members as a workaround:\n// https://github.com/microsoft/TypeScript/issues/18877#issuecomment-476921038\nexport {\n IRequest,\n IRequestHeader,\n IResponse,\n IProvideFluidRouter,\n IFluidRouter,\n} from \"./fluidRouter\";\n\nexport {\n IFluidHandleContext,\n IProvideFluidHandleContext,\n IFluidHandle,\n IProvideFluidHandle,\n} from \"./handles\";\n\nexport {\n IFluidPackageEnvironment,\n IFluidPackage,\n isFluidPackage,\n IFluidCodeDetailsConfig,\n IFluidCodeDetails,\n isFluidCodeDetails,\n IFluidCodeDetailsComparer,\n IProvideFluidCodeDetailsComparer,\n} from \"./fluidPackage\";\n\nexport {\n FluidObjectProviderKeys,\n FluidObject,\n FluidObjectKeys,\n} from \"./provider\";\n"]}
package/lib/handles.d.ts CHANGED
@@ -10,7 +10,7 @@ export interface IProvideFluidHandleContext {
10
10
  readonly IFluidHandleContext: IFluidHandleContext;
11
11
  }
12
12
  /**
13
- * An IFluidHandleContext describes a routing context from which other IFluidHandleContexts are defined
13
+ * Describes a routing context from which other `IFluidHandleContext`s are defined.
14
14
  */
15
15
  export interface IFluidHandleContext extends IProvideFluidHandleContext {
16
16
  /**
@@ -37,7 +37,7 @@ export interface IProvideFluidHandle {
37
37
  readonly IFluidHandle: IFluidHandle;
38
38
  }
39
39
  /**
40
- * Handle to a shared FluidObject
40
+ * Handle to a shared {@link FluidObject}.
41
41
  */
42
42
  export interface IFluidHandle<T = FluidObject & IFluidLoadable> extends IProvideFluidHandle {
43
43
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"handles.js","sourceRoot":"","sources":["../src/handles.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAMH,MAAM,CAAC,MAAM,mBAAmB,GAAqC,qBAAqB,CAAC;AAkC3F,MAAM,CAAC,MAAM,YAAY,GAA8B,cAAc,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { IRequest, IResponse } from \"./fluidRouter\";\nimport { IFluidLoadable } from \"./fluidLoadable\";\nimport { FluidObject } from \"./provider\";\n\nexport const IFluidHandleContext: keyof IProvideFluidHandleContext = \"IFluidHandleContext\";\n\nexport interface IProvideFluidHandleContext {\n readonly IFluidHandleContext: IFluidHandleContext;\n}\n\n/**\n * An IFluidHandleContext describes a routing context from which other IFluidHandleContexts are defined\n */\nexport interface IFluidHandleContext extends IProvideFluidHandleContext {\n /**\n * The absolute path to the handle context from the root.\n */\n readonly absolutePath: string;\n\n /**\n * The parent IFluidHandleContext that has provided a route path to this IFluidHandleContext or undefined\n * at the root.\n */\n readonly routeContext?: IFluidHandleContext;\n\n /**\n * Flag indicating whether or not the entity has services attached.\n */\n readonly isAttached: boolean;\n\n /**\n * Runs through the graph and attach the bounded handles.\n */\n attachGraph(): void;\n\n resolveHandle(request: IRequest): Promise<IResponse>;\n}\n\nexport const IFluidHandle: keyof IProvideFluidHandle = \"IFluidHandle\";\n\nexport interface IProvideFluidHandle {\n readonly IFluidHandle: IFluidHandle;\n}\n\n/**\n * Handle to a shared FluidObject\n */\nexport interface IFluidHandle<\n // REVIEW: Constrain `T` to something? How do we support dds and datastores safely?\n T = FluidObject & IFluidLoadable,\n > extends IProvideFluidHandle {\n\n /**\n * @deprecated Do not use handle's path for routing. Use `get` to get the underlying object.\n *\n * The absolute path to the handle context from the root.\n */\n readonly absolutePath: string;\n\n /**\n * Flag indicating whether or not the entity has services attached.\n */\n readonly isAttached: boolean;\n\n /**\n * Runs through the graph and attach the bounded handles.\n */\n attachGraph(): void;\n\n /**\n * Returns a promise to the Fluid Object referenced by the handle.\n */\n get(): Promise<T>;\n\n /**\n * Binds the given handle to this one or attach the given handle if this handle is attached.\n * A bound handle will also be attached once this handle is attached.\n */\n bind(handle: IFluidHandle): void;\n}\n"]}
1
+ {"version":3,"file":"handles.js","sourceRoot":"","sources":["../src/handles.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAMH,MAAM,CAAC,MAAM,mBAAmB,GAAqC,qBAAqB,CAAC;AAkC3F,MAAM,CAAC,MAAM,YAAY,GAA8B,cAAc,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { IRequest, IResponse } from \"./fluidRouter\";\nimport { IFluidLoadable } from \"./fluidLoadable\";\nimport { FluidObject } from \"./provider\";\n\nexport const IFluidHandleContext: keyof IProvideFluidHandleContext = \"IFluidHandleContext\";\n\nexport interface IProvideFluidHandleContext {\n readonly IFluidHandleContext: IFluidHandleContext;\n}\n\n/**\n * Describes a routing context from which other `IFluidHandleContext`s are defined.\n */\nexport interface IFluidHandleContext extends IProvideFluidHandleContext {\n /**\n * The absolute path to the handle context from the root.\n */\n readonly absolutePath: string;\n\n /**\n * The parent IFluidHandleContext that has provided a route path to this IFluidHandleContext or undefined\n * at the root.\n */\n readonly routeContext?: IFluidHandleContext;\n\n /**\n * Flag indicating whether or not the entity has services attached.\n */\n readonly isAttached: boolean;\n\n /**\n * Runs through the graph and attach the bounded handles.\n */\n attachGraph(): void;\n\n resolveHandle(request: IRequest): Promise<IResponse>;\n}\n\nexport const IFluidHandle: keyof IProvideFluidHandle = \"IFluidHandle\";\n\nexport interface IProvideFluidHandle {\n readonly IFluidHandle: IFluidHandle;\n}\n\n/**\n * Handle to a shared {@link FluidObject}.\n */\nexport interface IFluidHandle<\n // REVIEW: Constrain `T` to something? How do we support dds and datastores safely?\n T = FluidObject & IFluidLoadable,\n > extends IProvideFluidHandle {\n\n /**\n * @deprecated Do not use handle's path for routing. Use `get` to get the underlying object.\n *\n * The absolute path to the handle context from the root.\n */\n readonly absolutePath: string;\n\n /**\n * Flag indicating whether or not the entity has services attached.\n */\n readonly isAttached: boolean;\n\n /**\n * Runs through the graph and attach the bounded handles.\n */\n attachGraph(): void;\n\n /**\n * Returns a promise to the Fluid Object referenced by the handle.\n */\n get(): Promise<T>;\n\n /**\n * Binds the given handle to this one or attach the given handle if this handle is attached.\n * A bound handle will also be attached once this handle is attached.\n */\n bind(handle: IFluidHandle): void;\n}\n"]}
package/lib/index.d.ts CHANGED
@@ -3,9 +3,9 @@
3
3
  * Licensed under the MIT License.
4
4
  */
5
5
  export { IFluidObject } from "./fluidObject";
6
- export * from "./fluidLoadable";
6
+ export { IFluidLoadable, IProvideFluidLoadable, IFluidRunnable, IProvideFluidRunnable, } from "./fluidLoadable";
7
7
  export { IRequest, IRequestHeader, IResponse, IProvideFluidRouter, IFluidRouter, } from "./fluidRouter";
8
- export * from "./handles";
9
- export * from "./fluidPackage";
10
- export * from "./provider";
8
+ export { IFluidHandleContext, IProvideFluidHandleContext, IFluidHandle, IProvideFluidHandle, } from "./handles";
9
+ export { IFluidPackageEnvironment, IFluidPackage, isFluidPackage, IFluidCodeDetailsConfig, IFluidCodeDetails, isFluidCodeDetails, IFluidCodeDetailsComparer, IProvideFluidCodeDetailsComparer, } from "./fluidPackage";
10
+ export { FluidObjectProviderKeys, FluidObject, FluidObjectKeys, } from "./provider";
11
11
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAE7C,cAAc,iBAAiB,CAAC;AAIhC,OAAO,EACH,QAAQ,EACR,cAAc,EACd,SAAS,EACT,mBAAmB,EACnB,YAAY,GACf,MAAM,eAAe,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAE7C,OAAO,EACH,cAAc,EACd,qBAAqB,EACrB,cAAc,EACd,qBAAqB,GACxB,MAAM,iBAAiB,CAAC;AAKzB,OAAO,EACH,QAAQ,EACR,cAAc,EACd,SAAS,EACT,mBAAmB,EACnB,YAAY,GACf,MAAM,eAAe,CAAC;AAEvB,OAAO,EACH,mBAAmB,EACnB,0BAA0B,EAC1B,YAAY,EACZ,mBAAmB,GACtB,MAAM,WAAW,CAAC;AAEnB,OAAO,EACH,wBAAwB,EACxB,aAAa,EACb,cAAc,EACd,uBAAuB,EACvB,iBAAiB,EACjB,kBAAkB,EAClB,yBAAyB,EACzB,gCAAgC,GACnC,MAAM,gBAAgB,CAAC;AAExB,OAAO,EACH,uBAAuB,EACvB,WAAW,EACX,eAAe,GAClB,MAAM,YAAY,CAAC"}
package/lib/index.js CHANGED
@@ -2,12 +2,11 @@
2
2
  * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
3
  * Licensed under the MIT License.
4
4
  */
5
- export * from "./fluidLoadable";
5
+ export { IFluidLoadable, IFluidRunnable, } from "./fluidLoadable";
6
6
  // Typescript forgets the index signature when customers augment IRequestHeader if we export *.
7
7
  // So we export the explicit members as a workaround:
8
8
  // https://github.com/microsoft/TypeScript/issues/18877#issuecomment-476921038
9
9
  export { IFluidRouter, } from "./fluidRouter";
10
- export * from "./handles";
11
- export * from "./fluidPackage";
12
- export * from "./provider";
10
+ export { IFluidHandleContext, IFluidHandle, } from "./handles";
11
+ export { isFluidPackage, isFluidCodeDetails, IFluidCodeDetailsComparer, } from "./fluidPackage";
13
12
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAMH,cAAc,iBAAiB,CAAC;AAChC,+FAA+F;AAC/F,qDAAqD;AACrD,8EAA8E;AAC9E,OAAO,EAKH,YAAY,GACf,MAAM,eAAe,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n// when merging declarations the module path must match exactly. Because of this we need to explicitly export\n// IFluidObject as opposed to an export *\nexport { IFluidObject } from \"./fluidObject\";\n\nexport * from \"./fluidLoadable\";\n// Typescript forgets the index signature when customers augment IRequestHeader if we export *.\n// So we export the explicit members as a workaround:\n// https://github.com/microsoft/TypeScript/issues/18877#issuecomment-476921038\nexport {\n IRequest,\n IRequestHeader,\n IResponse,\n IProvideFluidRouter,\n IFluidRouter,\n} from \"./fluidRouter\";\nexport * from \"./handles\";\nexport * from \"./fluidPackage\";\nexport * from \"./provider\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAMH,OAAO,EACH,cAAc,EAEd,cAAc,GAEjB,MAAM,iBAAiB,CAAC;AAEzB,+FAA+F;AAC/F,qDAAqD;AACrD,8EAA8E;AAC9E,OAAO,EAKH,YAAY,GACf,MAAM,eAAe,CAAC;AAEvB,OAAO,EACH,mBAAmB,EAEnB,YAAY,GAEf,MAAM,WAAW,CAAC;AAEnB,OAAO,EAGH,cAAc,EAGd,kBAAkB,EAClB,yBAAyB,GAE5B,MAAM,gBAAgB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n// when merging declarations the module path must match exactly. Because of this we need to explicitly export\n// IFluidObject as opposed to an export *\nexport { IFluidObject } from \"./fluidObject\";\n\nexport {\n IFluidLoadable,\n IProvideFluidLoadable,\n IFluidRunnable,\n IProvideFluidRunnable,\n} from \"./fluidLoadable\";\n\n// Typescript forgets the index signature when customers augment IRequestHeader if we export *.\n// So we export the explicit members as a workaround:\n// https://github.com/microsoft/TypeScript/issues/18877#issuecomment-476921038\nexport {\n IRequest,\n IRequestHeader,\n IResponse,\n IProvideFluidRouter,\n IFluidRouter,\n} from \"./fluidRouter\";\n\nexport {\n IFluidHandleContext,\n IProvideFluidHandleContext,\n IFluidHandle,\n IProvideFluidHandle,\n} from \"./handles\";\n\nexport {\n IFluidPackageEnvironment,\n IFluidPackage,\n isFluidPackage,\n IFluidCodeDetailsConfig,\n IFluidCodeDetails,\n isFluidCodeDetails,\n IFluidCodeDetailsComparer,\n IProvideFluidCodeDetailsComparer,\n} from \"./fluidPackage\";\n\nexport {\n FluidObjectProviderKeys,\n FluidObject,\n FluidObjectKeys,\n} from \"./provider\";\n"]}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=validateCoreInterfacesPrevious.generated.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"validateCoreInterfacesPrevious.generated.d.ts","sourceRoot":"","sources":["../../../src/test/types/validateCoreInterfacesPrevious.generated.ts"],"names":[],"mappings":""}
@@ -61,4 +61,4 @@ use_old_VariableDeclaration_isFluidCodeDetails(get_current_VariableDeclaration_i
61
61
  use_current_VariableDeclaration_isFluidPackage(get_old_VariableDeclaration_isFluidPackage());
62
62
  use_old_VariableDeclaration_isFluidPackage(get_current_VariableDeclaration_isFluidPackage());
63
63
  export {};
64
- //# sourceMappingURL=validateCoreInterfacesPrevious.js.map
64
+ //# sourceMappingURL=validateCoreInterfacesPrevious.generated.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"validateCoreInterfacesPrevious.generated.js","sourceRoot":"","sources":["../../../src/test/types/validateCoreInterfacesPrevious.generated.ts"],"names":[],"mappings":"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","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/core-interfaces-previous\";\nimport * as current from \"../../index\";\n\ntype TypeOnly<T> = {\n [P in keyof T]: TypeOnly<T[P]>;\n};\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_FluidObject\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_TypeAliasDeclaration_FluidObject():\n TypeOnly<old.FluidObject>;\ndeclare function use_current_TypeAliasDeclaration_FluidObject(\n use: TypeOnly<current.FluidObject>);\nuse_current_TypeAliasDeclaration_FluidObject(\n get_old_TypeAliasDeclaration_FluidObject());\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_FluidObject\": {\"backCompat\": false}\n*/\ndeclare function get_current_TypeAliasDeclaration_FluidObject():\n TypeOnly<current.FluidObject>;\ndeclare function use_old_TypeAliasDeclaration_FluidObject(\n use: TypeOnly<old.FluidObject>);\nuse_old_TypeAliasDeclaration_FluidObject(\n get_current_TypeAliasDeclaration_FluidObject());\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_FluidObjectKeys\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_TypeAliasDeclaration_FluidObjectKeys():\n TypeOnly<old.FluidObjectKeys<any>>;\ndeclare function use_current_TypeAliasDeclaration_FluidObjectKeys(\n use: TypeOnly<current.FluidObjectKeys<any>>);\nuse_current_TypeAliasDeclaration_FluidObjectKeys(\n get_old_TypeAliasDeclaration_FluidObjectKeys());\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_FluidObjectKeys\": {\"backCompat\": false}\n*/\ndeclare function get_current_TypeAliasDeclaration_FluidObjectKeys():\n TypeOnly<current.FluidObjectKeys<any>>;\ndeclare function use_old_TypeAliasDeclaration_FluidObjectKeys(\n use: TypeOnly<old.FluidObjectKeys<any>>);\nuse_old_TypeAliasDeclaration_FluidObjectKeys(\n get_current_TypeAliasDeclaration_FluidObjectKeys());\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_FluidObjectProviderKeys\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_TypeAliasDeclaration_FluidObjectProviderKeys():\n TypeOnly<old.FluidObjectProviderKeys<any,any>>;\ndeclare function use_current_TypeAliasDeclaration_FluidObjectProviderKeys(\n use: TypeOnly<current.FluidObjectProviderKeys<any,any>>);\nuse_current_TypeAliasDeclaration_FluidObjectProviderKeys(\n get_old_TypeAliasDeclaration_FluidObjectProviderKeys());\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_FluidObjectProviderKeys\": {\"backCompat\": false}\n*/\ndeclare function get_current_TypeAliasDeclaration_FluidObjectProviderKeys():\n TypeOnly<current.FluidObjectProviderKeys<any,any>>;\ndeclare function use_old_TypeAliasDeclaration_FluidObjectProviderKeys(\n use: TypeOnly<old.FluidObjectProviderKeys<any,any>>);\nuse_old_TypeAliasDeclaration_FluidObjectProviderKeys(\n get_current_TypeAliasDeclaration_FluidObjectProviderKeys());\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_IFluidCodeDetails\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidCodeDetails():\n TypeOnly<old.IFluidCodeDetails>;\ndeclare function use_current_InterfaceDeclaration_IFluidCodeDetails(\n use: TypeOnly<current.IFluidCodeDetails>);\nuse_current_InterfaceDeclaration_IFluidCodeDetails(\n get_old_InterfaceDeclaration_IFluidCodeDetails());\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_IFluidCodeDetails\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidCodeDetails():\n TypeOnly<current.IFluidCodeDetails>;\ndeclare function use_old_InterfaceDeclaration_IFluidCodeDetails(\n use: TypeOnly<old.IFluidCodeDetails>);\nuse_old_InterfaceDeclaration_IFluidCodeDetails(\n get_current_InterfaceDeclaration_IFluidCodeDetails());\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_IFluidCodeDetailsComparer\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidCodeDetailsComparer():\n TypeOnly<typeof old.IFluidCodeDetailsComparer>;\ndeclare function use_current_VariableDeclaration_IFluidCodeDetailsComparer(\n use: TypeOnly<typeof current.IFluidCodeDetailsComparer>);\nuse_current_VariableDeclaration_IFluidCodeDetailsComparer(\n get_old_VariableDeclaration_IFluidCodeDetailsComparer());\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_IFluidCodeDetailsComparer\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidCodeDetailsComparer():\n TypeOnly<typeof current.IFluidCodeDetailsComparer>;\ndeclare function use_old_VariableDeclaration_IFluidCodeDetailsComparer(\n use: TypeOnly<typeof old.IFluidCodeDetailsComparer>);\nuse_old_VariableDeclaration_IFluidCodeDetailsComparer(\n get_current_VariableDeclaration_IFluidCodeDetailsComparer());\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_IFluidCodeDetailsComparer\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidCodeDetailsComparer():\n TypeOnly<old.IFluidCodeDetailsComparer>;\ndeclare function use_current_InterfaceDeclaration_IFluidCodeDetailsComparer(\n use: TypeOnly<current.IFluidCodeDetailsComparer>);\nuse_current_InterfaceDeclaration_IFluidCodeDetailsComparer(\n get_old_InterfaceDeclaration_IFluidCodeDetailsComparer());\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_IFluidCodeDetailsComparer\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidCodeDetailsComparer():\n TypeOnly<current.IFluidCodeDetailsComparer>;\ndeclare function use_old_InterfaceDeclaration_IFluidCodeDetailsComparer(\n use: TypeOnly<old.IFluidCodeDetailsComparer>);\nuse_old_InterfaceDeclaration_IFluidCodeDetailsComparer(\n get_current_InterfaceDeclaration_IFluidCodeDetailsComparer());\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_IFluidCodeDetailsConfig\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidCodeDetailsConfig():\n TypeOnly<old.IFluidCodeDetailsConfig>;\ndeclare function use_current_InterfaceDeclaration_IFluidCodeDetailsConfig(\n use: TypeOnly<current.IFluidCodeDetailsConfig>);\nuse_current_InterfaceDeclaration_IFluidCodeDetailsConfig(\n get_old_InterfaceDeclaration_IFluidCodeDetailsConfig());\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_IFluidCodeDetailsConfig\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidCodeDetailsConfig():\n TypeOnly<current.IFluidCodeDetailsConfig>;\ndeclare function use_old_InterfaceDeclaration_IFluidCodeDetailsConfig(\n use: TypeOnly<old.IFluidCodeDetailsConfig>);\nuse_old_InterfaceDeclaration_IFluidCodeDetailsConfig(\n get_current_InterfaceDeclaration_IFluidCodeDetailsConfig());\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_IFluidHandle\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidHandle():\n TypeOnly<typeof old.IFluidHandle>;\ndeclare function use_current_VariableDeclaration_IFluidHandle(\n use: TypeOnly<typeof current.IFluidHandle>);\nuse_current_VariableDeclaration_IFluidHandle(\n get_old_VariableDeclaration_IFluidHandle());\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_IFluidHandle\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidHandle():\n TypeOnly<typeof current.IFluidHandle>;\ndeclare function use_old_VariableDeclaration_IFluidHandle(\n use: TypeOnly<typeof old.IFluidHandle>);\nuse_old_VariableDeclaration_IFluidHandle(\n get_current_VariableDeclaration_IFluidHandle());\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_IFluidHandle\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidHandle():\n TypeOnly<old.IFluidHandle>;\ndeclare function use_current_InterfaceDeclaration_IFluidHandle(\n use: TypeOnly<current.IFluidHandle>);\nuse_current_InterfaceDeclaration_IFluidHandle(\n get_old_InterfaceDeclaration_IFluidHandle());\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_IFluidHandle\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidHandle():\n TypeOnly<current.IFluidHandle>;\ndeclare function use_old_InterfaceDeclaration_IFluidHandle(\n use: TypeOnly<old.IFluidHandle>);\nuse_old_InterfaceDeclaration_IFluidHandle(\n get_current_InterfaceDeclaration_IFluidHandle());\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_IFluidHandleContext\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidHandleContext():\n TypeOnly<typeof old.IFluidHandleContext>;\ndeclare function use_current_VariableDeclaration_IFluidHandleContext(\n use: TypeOnly<typeof current.IFluidHandleContext>);\nuse_current_VariableDeclaration_IFluidHandleContext(\n get_old_VariableDeclaration_IFluidHandleContext());\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_IFluidHandleContext\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidHandleContext():\n TypeOnly<typeof current.IFluidHandleContext>;\ndeclare function use_old_VariableDeclaration_IFluidHandleContext(\n use: TypeOnly<typeof old.IFluidHandleContext>);\nuse_old_VariableDeclaration_IFluidHandleContext(\n get_current_VariableDeclaration_IFluidHandleContext());\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_IFluidHandleContext\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidHandleContext():\n TypeOnly<old.IFluidHandleContext>;\ndeclare function use_current_InterfaceDeclaration_IFluidHandleContext(\n use: TypeOnly<current.IFluidHandleContext>);\nuse_current_InterfaceDeclaration_IFluidHandleContext(\n get_old_InterfaceDeclaration_IFluidHandleContext());\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_IFluidHandleContext\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidHandleContext():\n TypeOnly<current.IFluidHandleContext>;\ndeclare function use_old_InterfaceDeclaration_IFluidHandleContext(\n use: TypeOnly<old.IFluidHandleContext>);\nuse_old_InterfaceDeclaration_IFluidHandleContext(\n get_current_InterfaceDeclaration_IFluidHandleContext());\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_IFluidLoadable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidLoadable():\n TypeOnly<typeof old.IFluidLoadable>;\ndeclare function use_current_VariableDeclaration_IFluidLoadable(\n use: TypeOnly<typeof current.IFluidLoadable>);\nuse_current_VariableDeclaration_IFluidLoadable(\n get_old_VariableDeclaration_IFluidLoadable());\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_IFluidLoadable\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidLoadable():\n TypeOnly<typeof current.IFluidLoadable>;\ndeclare function use_old_VariableDeclaration_IFluidLoadable(\n use: TypeOnly<typeof old.IFluidLoadable>);\nuse_old_VariableDeclaration_IFluidLoadable(\n get_current_VariableDeclaration_IFluidLoadable());\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_IFluidLoadable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidLoadable():\n TypeOnly<old.IFluidLoadable>;\ndeclare function use_current_InterfaceDeclaration_IFluidLoadable(\n use: TypeOnly<current.IFluidLoadable>);\nuse_current_InterfaceDeclaration_IFluidLoadable(\n get_old_InterfaceDeclaration_IFluidLoadable());\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_IFluidLoadable\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidLoadable():\n TypeOnly<current.IFluidLoadable>;\ndeclare function use_old_InterfaceDeclaration_IFluidLoadable(\n use: TypeOnly<old.IFluidLoadable>);\nuse_old_InterfaceDeclaration_IFluidLoadable(\n get_current_InterfaceDeclaration_IFluidLoadable());\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_IFluidObject\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidObject():\n TypeOnly<old.IFluidObject>;\ndeclare function use_current_InterfaceDeclaration_IFluidObject(\n use: TypeOnly<current.IFluidObject>);\nuse_current_InterfaceDeclaration_IFluidObject(\n get_old_InterfaceDeclaration_IFluidObject());\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_IFluidObject\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidObject():\n TypeOnly<current.IFluidObject>;\ndeclare function use_old_InterfaceDeclaration_IFluidObject(\n use: TypeOnly<old.IFluidObject>);\nuse_old_InterfaceDeclaration_IFluidObject(\n get_current_InterfaceDeclaration_IFluidObject());\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_IFluidPackage\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidPackage():\n TypeOnly<old.IFluidPackage>;\ndeclare function use_current_InterfaceDeclaration_IFluidPackage(\n use: TypeOnly<current.IFluidPackage>);\nuse_current_InterfaceDeclaration_IFluidPackage(\n get_old_InterfaceDeclaration_IFluidPackage());\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_IFluidPackage\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidPackage():\n TypeOnly<current.IFluidPackage>;\ndeclare function use_old_InterfaceDeclaration_IFluidPackage(\n use: TypeOnly<old.IFluidPackage>);\nuse_old_InterfaceDeclaration_IFluidPackage(\n get_current_InterfaceDeclaration_IFluidPackage());\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_IFluidPackageEnvironment\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidPackageEnvironment():\n TypeOnly<old.IFluidPackageEnvironment>;\ndeclare function use_current_InterfaceDeclaration_IFluidPackageEnvironment(\n use: TypeOnly<current.IFluidPackageEnvironment>);\nuse_current_InterfaceDeclaration_IFluidPackageEnvironment(\n get_old_InterfaceDeclaration_IFluidPackageEnvironment());\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_IFluidPackageEnvironment\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidPackageEnvironment():\n TypeOnly<current.IFluidPackageEnvironment>;\ndeclare function use_old_InterfaceDeclaration_IFluidPackageEnvironment(\n use: TypeOnly<old.IFluidPackageEnvironment>);\nuse_old_InterfaceDeclaration_IFluidPackageEnvironment(\n get_current_InterfaceDeclaration_IFluidPackageEnvironment());\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_IFluidRouter\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidRouter():\n TypeOnly<typeof old.IFluidRouter>;\ndeclare function use_current_VariableDeclaration_IFluidRouter(\n use: TypeOnly<typeof current.IFluidRouter>);\nuse_current_VariableDeclaration_IFluidRouter(\n get_old_VariableDeclaration_IFluidRouter());\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_IFluidRouter\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidRouter():\n TypeOnly<typeof current.IFluidRouter>;\ndeclare function use_old_VariableDeclaration_IFluidRouter(\n use: TypeOnly<typeof old.IFluidRouter>);\nuse_old_VariableDeclaration_IFluidRouter(\n get_current_VariableDeclaration_IFluidRouter());\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_IFluidRouter\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidRouter():\n TypeOnly<old.IFluidRouter>;\ndeclare function use_current_InterfaceDeclaration_IFluidRouter(\n use: TypeOnly<current.IFluidRouter>);\nuse_current_InterfaceDeclaration_IFluidRouter(\n get_old_InterfaceDeclaration_IFluidRouter());\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_IFluidRouter\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidRouter():\n TypeOnly<current.IFluidRouter>;\ndeclare function use_old_InterfaceDeclaration_IFluidRouter(\n use: TypeOnly<old.IFluidRouter>);\nuse_old_InterfaceDeclaration_IFluidRouter(\n get_current_InterfaceDeclaration_IFluidRouter());\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_IFluidRunnable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidRunnable():\n TypeOnly<typeof old.IFluidRunnable>;\ndeclare function use_current_VariableDeclaration_IFluidRunnable(\n use: TypeOnly<typeof current.IFluidRunnable>);\nuse_current_VariableDeclaration_IFluidRunnable(\n get_old_VariableDeclaration_IFluidRunnable());\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_IFluidRunnable\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidRunnable():\n TypeOnly<typeof current.IFluidRunnable>;\ndeclare function use_old_VariableDeclaration_IFluidRunnable(\n use: TypeOnly<typeof old.IFluidRunnable>);\nuse_old_VariableDeclaration_IFluidRunnable(\n get_current_VariableDeclaration_IFluidRunnable());\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_IFluidRunnable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidRunnable():\n TypeOnly<old.IFluidRunnable>;\ndeclare function use_current_InterfaceDeclaration_IFluidRunnable(\n use: TypeOnly<current.IFluidRunnable>);\nuse_current_InterfaceDeclaration_IFluidRunnable(\n get_old_InterfaceDeclaration_IFluidRunnable());\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_IFluidRunnable\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidRunnable():\n TypeOnly<current.IFluidRunnable>;\ndeclare function use_old_InterfaceDeclaration_IFluidRunnable(\n use: TypeOnly<old.IFluidRunnable>);\nuse_old_InterfaceDeclaration_IFluidRunnable(\n get_current_InterfaceDeclaration_IFluidRunnable());\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_IProvideFluidCodeDetailsComparer\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidCodeDetailsComparer():\n TypeOnly<old.IProvideFluidCodeDetailsComparer>;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidCodeDetailsComparer(\n use: TypeOnly<current.IProvideFluidCodeDetailsComparer>);\nuse_current_InterfaceDeclaration_IProvideFluidCodeDetailsComparer(\n get_old_InterfaceDeclaration_IProvideFluidCodeDetailsComparer());\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_IProvideFluidCodeDetailsComparer\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidCodeDetailsComparer():\n TypeOnly<current.IProvideFluidCodeDetailsComparer>;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidCodeDetailsComparer(\n use: TypeOnly<old.IProvideFluidCodeDetailsComparer>);\nuse_old_InterfaceDeclaration_IProvideFluidCodeDetailsComparer(\n get_current_InterfaceDeclaration_IProvideFluidCodeDetailsComparer());\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_IProvideFluidHandle\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidHandle():\n TypeOnly<old.IProvideFluidHandle>;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidHandle(\n use: TypeOnly<current.IProvideFluidHandle>);\nuse_current_InterfaceDeclaration_IProvideFluidHandle(\n get_old_InterfaceDeclaration_IProvideFluidHandle());\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_IProvideFluidHandle\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidHandle():\n TypeOnly<current.IProvideFluidHandle>;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidHandle(\n use: TypeOnly<old.IProvideFluidHandle>);\nuse_old_InterfaceDeclaration_IProvideFluidHandle(\n get_current_InterfaceDeclaration_IProvideFluidHandle());\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_IProvideFluidHandleContext\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidHandleContext():\n TypeOnly<old.IProvideFluidHandleContext>;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidHandleContext(\n use: TypeOnly<current.IProvideFluidHandleContext>);\nuse_current_InterfaceDeclaration_IProvideFluidHandleContext(\n get_old_InterfaceDeclaration_IProvideFluidHandleContext());\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_IProvideFluidHandleContext\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidHandleContext():\n TypeOnly<current.IProvideFluidHandleContext>;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidHandleContext(\n use: TypeOnly<old.IProvideFluidHandleContext>);\nuse_old_InterfaceDeclaration_IProvideFluidHandleContext(\n get_current_InterfaceDeclaration_IProvideFluidHandleContext());\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_IProvideFluidLoadable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidLoadable():\n TypeOnly<old.IProvideFluidLoadable>;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidLoadable(\n use: TypeOnly<current.IProvideFluidLoadable>);\nuse_current_InterfaceDeclaration_IProvideFluidLoadable(\n get_old_InterfaceDeclaration_IProvideFluidLoadable());\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_IProvideFluidLoadable\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidLoadable():\n TypeOnly<current.IProvideFluidLoadable>;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidLoadable(\n use: TypeOnly<old.IProvideFluidLoadable>);\nuse_old_InterfaceDeclaration_IProvideFluidLoadable(\n get_current_InterfaceDeclaration_IProvideFluidLoadable());\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_IProvideFluidRouter\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidRouter():\n TypeOnly<old.IProvideFluidRouter>;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidRouter(\n use: TypeOnly<current.IProvideFluidRouter>);\nuse_current_InterfaceDeclaration_IProvideFluidRouter(\n get_old_InterfaceDeclaration_IProvideFluidRouter());\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_IProvideFluidRouter\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidRouter():\n TypeOnly<current.IProvideFluidRouter>;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidRouter(\n use: TypeOnly<old.IProvideFluidRouter>);\nuse_old_InterfaceDeclaration_IProvideFluidRouter(\n get_current_InterfaceDeclaration_IProvideFluidRouter());\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_IProvideFluidRunnable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidRunnable():\n TypeOnly<old.IProvideFluidRunnable>;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidRunnable(\n use: TypeOnly<current.IProvideFluidRunnable>);\nuse_current_InterfaceDeclaration_IProvideFluidRunnable(\n get_old_InterfaceDeclaration_IProvideFluidRunnable());\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_IProvideFluidRunnable\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidRunnable():\n TypeOnly<current.IProvideFluidRunnable>;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidRunnable(\n use: TypeOnly<old.IProvideFluidRunnable>);\nuse_old_InterfaceDeclaration_IProvideFluidRunnable(\n get_current_InterfaceDeclaration_IProvideFluidRunnable());\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_IRequest\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IRequest():\n TypeOnly<old.IRequest>;\ndeclare function use_current_InterfaceDeclaration_IRequest(\n use: TypeOnly<current.IRequest>);\nuse_current_InterfaceDeclaration_IRequest(\n get_old_InterfaceDeclaration_IRequest());\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_IRequest\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IRequest():\n TypeOnly<current.IRequest>;\ndeclare function use_old_InterfaceDeclaration_IRequest(\n use: TypeOnly<old.IRequest>);\nuse_old_InterfaceDeclaration_IRequest(\n get_current_InterfaceDeclaration_IRequest());\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_IRequestHeader\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IRequestHeader():\n TypeOnly<old.IRequestHeader>;\ndeclare function use_current_InterfaceDeclaration_IRequestHeader(\n use: TypeOnly<current.IRequestHeader>);\nuse_current_InterfaceDeclaration_IRequestHeader(\n get_old_InterfaceDeclaration_IRequestHeader());\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_IRequestHeader\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IRequestHeader():\n TypeOnly<current.IRequestHeader>;\ndeclare function use_old_InterfaceDeclaration_IRequestHeader(\n use: TypeOnly<old.IRequestHeader>);\nuse_old_InterfaceDeclaration_IRequestHeader(\n get_current_InterfaceDeclaration_IRequestHeader());\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_IResponse\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IResponse():\n TypeOnly<old.IResponse>;\ndeclare function use_current_InterfaceDeclaration_IResponse(\n use: TypeOnly<current.IResponse>);\nuse_current_InterfaceDeclaration_IResponse(\n get_old_InterfaceDeclaration_IResponse());\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_IResponse\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IResponse():\n TypeOnly<current.IResponse>;\ndeclare function use_old_InterfaceDeclaration_IResponse(\n use: TypeOnly<old.IResponse>);\nuse_old_InterfaceDeclaration_IResponse(\n get_current_InterfaceDeclaration_IResponse());\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_isFluidCodeDetails\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_isFluidCodeDetails():\n TypeOnly<typeof old.isFluidCodeDetails>;\ndeclare function use_current_VariableDeclaration_isFluidCodeDetails(\n use: TypeOnly<typeof current.isFluidCodeDetails>);\nuse_current_VariableDeclaration_isFluidCodeDetails(\n get_old_VariableDeclaration_isFluidCodeDetails());\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_isFluidCodeDetails\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_isFluidCodeDetails():\n TypeOnly<typeof current.isFluidCodeDetails>;\ndeclare function use_old_VariableDeclaration_isFluidCodeDetails(\n use: TypeOnly<typeof old.isFluidCodeDetails>);\nuse_old_VariableDeclaration_isFluidCodeDetails(\n get_current_VariableDeclaration_isFluidCodeDetails());\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_isFluidPackage\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_isFluidPackage():\n TypeOnly<typeof old.isFluidPackage>;\ndeclare function use_current_VariableDeclaration_isFluidPackage(\n use: TypeOnly<typeof current.isFluidPackage>);\nuse_current_VariableDeclaration_isFluidPackage(\n get_old_VariableDeclaration_isFluidPackage());\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_isFluidPackage\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_isFluidPackage():\n TypeOnly<typeof current.isFluidPackage>;\ndeclare function use_old_VariableDeclaration_isFluidPackage(\n use: TypeOnly<typeof old.isFluidPackage>);\nuse_old_VariableDeclaration_isFluidPackage(\n get_current_VariableDeclaration_isFluidPackage());\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/core-interfaces",
3
- "version": "2.0.0-dev.1.4.6.106135",
3
+ "version": "2.0.0-dev.2.2.0.111723",
4
4
  "description": "Fluid object interfaces",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -28,31 +28,36 @@
28
28
  "clean": "rimraf dist lib *.tsbuildinfo *.build.log",
29
29
  "eslint": "eslint --format stylish src",
30
30
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
31
+ "format": "npm run prettier:fix",
31
32
  "lint": "npm run eslint",
32
33
  "lint:fix": "npm run eslint:fix",
34
+ "prettier": "prettier --check . --ignore-path ../../../.prettierignore",
35
+ "prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
33
36
  "tsc": "tsc",
34
37
  "tsc:watch": "tsc --watch",
35
- "tsfmt": "tsfmt --verify",
36
- "tsfmt:fix": "tsfmt --replace",
37
- "typetests:gen": "fluid-type-validator -g -d ."
38
+ "typetests:gen": "flub generate typetests --generate --dir .",
39
+ "typetests:prepare": "flub generate typetests --prepare --dir . --pin"
38
40
  },
39
41
  "devDependencies": {
40
- "@fluidframework/build-common": "^1.0.0",
41
- "@fluidframework/build-tools": "^0.4.4000",
42
- "@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@^1.1.0",
43
- "@fluidframework/eslint-config-fluid": "^1.0.0",
42
+ "@fluid-tools/build-cli": "^0.6.0-109663",
43
+ "@fluidframework/build-common": "^1.1.0",
44
+ "@fluidframework/build-tools": "^0.6.0-109663",
45
+ "@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.0.0-internal.2.1.0",
46
+ "@fluidframework/eslint-config-fluid": "^1.2.0",
44
47
  "@microsoft/api-extractor": "^7.22.2",
45
48
  "@rushstack/eslint-config": "^2.5.1",
46
49
  "@types/node": "^14.18.0",
47
50
  "concurrently": "^6.2.0",
48
51
  "copyfiles": "^2.4.1",
49
52
  "eslint": "~8.6.0",
53
+ "prettier": "~2.6.2",
50
54
  "rimraf": "^2.6.2",
51
- "typescript": "~4.5.5",
52
- "typescript-formatter": "7.1.0"
55
+ "typescript": "~4.5.5"
53
56
  },
54
57
  "typeValidation": {
55
- "version": "2.0.0",
58
+ "version": "2.0.0-internal.2.2.0",
59
+ "baselineRange": ">=2.0.0-internal.2.1.0 <2.0.0-internal.2.2.0",
60
+ "baselineVersion": "2.0.0-internal.2.1.0",
56
61
  "broken": {}
57
62
  }
58
63
  }
@@ -0,0 +1,8 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+
6
+ module.exports = {
7
+ ...require("@fluidframework/build-common/prettier.config.cjs"),
8
+ };
package/src/handles.ts CHANGED
@@ -14,7 +14,7 @@ export interface IProvideFluidHandleContext {
14
14
  }
15
15
 
16
16
  /**
17
- * An IFluidHandleContext describes a routing context from which other IFluidHandleContexts are defined
17
+ * Describes a routing context from which other `IFluidHandleContext`s are defined.
18
18
  */
19
19
  export interface IFluidHandleContext extends IProvideFluidHandleContext {
20
20
  /**
@@ -48,7 +48,7 @@ export interface IProvideFluidHandle {
48
48
  }
49
49
 
50
50
  /**
51
- * Handle to a shared FluidObject
51
+ * Handle to a shared {@link FluidObject}.
52
52
  */
53
53
  export interface IFluidHandle<
54
54
  // REVIEW: Constrain `T` to something? How do we support dds and datastores safely?
package/src/index.ts CHANGED
@@ -7,7 +7,13 @@
7
7
  // IFluidObject as opposed to an export *
8
8
  export { IFluidObject } from "./fluidObject";
9
9
 
10
- export * from "./fluidLoadable";
10
+ export {
11
+ IFluidLoadable,
12
+ IProvideFluidLoadable,
13
+ IFluidRunnable,
14
+ IProvideFluidRunnable,
15
+ } from "./fluidLoadable";
16
+
11
17
  // Typescript forgets the index signature when customers augment IRequestHeader if we export *.
12
18
  // So we export the explicit members as a workaround:
13
19
  // https://github.com/microsoft/TypeScript/issues/18877#issuecomment-476921038
@@ -18,6 +24,27 @@ export {
18
24
  IProvideFluidRouter,
19
25
  IFluidRouter,
20
26
  } from "./fluidRouter";
21
- export * from "./handles";
22
- export * from "./fluidPackage";
23
- export * from "./provider";
27
+
28
+ export {
29
+ IFluidHandleContext,
30
+ IProvideFluidHandleContext,
31
+ IFluidHandle,
32
+ IProvideFluidHandle,
33
+ } from "./handles";
34
+
35
+ export {
36
+ IFluidPackageEnvironment,
37
+ IFluidPackage,
38
+ isFluidPackage,
39
+ IFluidCodeDetailsConfig,
40
+ IFluidCodeDetails,
41
+ isFluidCodeDetails,
42
+ IFluidCodeDetailsComparer,
43
+ IProvideFluidCodeDetailsComparer,
44
+ } from "./fluidPackage";
45
+
46
+ export {
47
+ FluidObjectProviderKeys,
48
+ FluidObject,
49
+ FluidObjectKeys,
50
+ } from "./provider";
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=validateCoreInterfacesPrevious.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"validateCoreInterfacesPrevious.d.ts","sourceRoot":"","sources":["../../../src/test/types/validateCoreInterfacesPrevious.ts"],"names":[],"mappings":""}
@@ -1 +0,0 @@
1
- {"version":3,"file":"validateCoreInterfacesPrevious.js","sourceRoot":"","sources":["../../../src/test/types/validateCoreInterfacesPrevious.ts"],"names":[],"mappings":"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","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/core-interfaces-previous\";\nimport * as current from \"../../index\";\n\ntype TypeOnly<T> = {\n [P in keyof T]: TypeOnly<T[P]>;\n};\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_FluidObject\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_TypeAliasDeclaration_FluidObject():\n TypeOnly<old.FluidObject>;\ndeclare function use_current_TypeAliasDeclaration_FluidObject(\n use: TypeOnly<current.FluidObject>);\nuse_current_TypeAliasDeclaration_FluidObject(\n get_old_TypeAliasDeclaration_FluidObject());\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_FluidObject\": {\"backCompat\": false}\n*/\ndeclare function get_current_TypeAliasDeclaration_FluidObject():\n TypeOnly<current.FluidObject>;\ndeclare function use_old_TypeAliasDeclaration_FluidObject(\n use: TypeOnly<old.FluidObject>);\nuse_old_TypeAliasDeclaration_FluidObject(\n get_current_TypeAliasDeclaration_FluidObject());\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_FluidObjectKeys\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_TypeAliasDeclaration_FluidObjectKeys():\n TypeOnly<old.FluidObjectKeys<any>>;\ndeclare function use_current_TypeAliasDeclaration_FluidObjectKeys(\n use: TypeOnly<current.FluidObjectKeys<any>>);\nuse_current_TypeAliasDeclaration_FluidObjectKeys(\n get_old_TypeAliasDeclaration_FluidObjectKeys());\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_FluidObjectKeys\": {\"backCompat\": false}\n*/\ndeclare function get_current_TypeAliasDeclaration_FluidObjectKeys():\n TypeOnly<current.FluidObjectKeys<any>>;\ndeclare function use_old_TypeAliasDeclaration_FluidObjectKeys(\n use: TypeOnly<old.FluidObjectKeys<any>>);\nuse_old_TypeAliasDeclaration_FluidObjectKeys(\n get_current_TypeAliasDeclaration_FluidObjectKeys());\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_FluidObjectProviderKeys\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_TypeAliasDeclaration_FluidObjectProviderKeys():\n TypeOnly<old.FluidObjectProviderKeys<any,any>>;\ndeclare function use_current_TypeAliasDeclaration_FluidObjectProviderKeys(\n use: TypeOnly<current.FluidObjectProviderKeys<any,any>>);\nuse_current_TypeAliasDeclaration_FluidObjectProviderKeys(\n get_old_TypeAliasDeclaration_FluidObjectProviderKeys());\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_FluidObjectProviderKeys\": {\"backCompat\": false}\n*/\ndeclare function get_current_TypeAliasDeclaration_FluidObjectProviderKeys():\n TypeOnly<current.FluidObjectProviderKeys<any,any>>;\ndeclare function use_old_TypeAliasDeclaration_FluidObjectProviderKeys(\n use: TypeOnly<old.FluidObjectProviderKeys<any,any>>);\nuse_old_TypeAliasDeclaration_FluidObjectProviderKeys(\n get_current_TypeAliasDeclaration_FluidObjectProviderKeys());\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_IFluidCodeDetails\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidCodeDetails():\n TypeOnly<old.IFluidCodeDetails>;\ndeclare function use_current_InterfaceDeclaration_IFluidCodeDetails(\n use: TypeOnly<current.IFluidCodeDetails>);\nuse_current_InterfaceDeclaration_IFluidCodeDetails(\n get_old_InterfaceDeclaration_IFluidCodeDetails());\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_IFluidCodeDetails\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidCodeDetails():\n TypeOnly<current.IFluidCodeDetails>;\ndeclare function use_old_InterfaceDeclaration_IFluidCodeDetails(\n use: TypeOnly<old.IFluidCodeDetails>);\nuse_old_InterfaceDeclaration_IFluidCodeDetails(\n get_current_InterfaceDeclaration_IFluidCodeDetails());\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_IFluidCodeDetailsComparer\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidCodeDetailsComparer():\n TypeOnly<typeof old.IFluidCodeDetailsComparer>;\ndeclare function use_current_VariableDeclaration_IFluidCodeDetailsComparer(\n use: TypeOnly<typeof current.IFluidCodeDetailsComparer>);\nuse_current_VariableDeclaration_IFluidCodeDetailsComparer(\n get_old_VariableDeclaration_IFluidCodeDetailsComparer());\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_IFluidCodeDetailsComparer\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidCodeDetailsComparer():\n TypeOnly<typeof current.IFluidCodeDetailsComparer>;\ndeclare function use_old_VariableDeclaration_IFluidCodeDetailsComparer(\n use: TypeOnly<typeof old.IFluidCodeDetailsComparer>);\nuse_old_VariableDeclaration_IFluidCodeDetailsComparer(\n get_current_VariableDeclaration_IFluidCodeDetailsComparer());\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_IFluidCodeDetailsComparer\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidCodeDetailsComparer():\n TypeOnly<old.IFluidCodeDetailsComparer>;\ndeclare function use_current_InterfaceDeclaration_IFluidCodeDetailsComparer(\n use: TypeOnly<current.IFluidCodeDetailsComparer>);\nuse_current_InterfaceDeclaration_IFluidCodeDetailsComparer(\n get_old_InterfaceDeclaration_IFluidCodeDetailsComparer());\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_IFluidCodeDetailsComparer\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidCodeDetailsComparer():\n TypeOnly<current.IFluidCodeDetailsComparer>;\ndeclare function use_old_InterfaceDeclaration_IFluidCodeDetailsComparer(\n use: TypeOnly<old.IFluidCodeDetailsComparer>);\nuse_old_InterfaceDeclaration_IFluidCodeDetailsComparer(\n get_current_InterfaceDeclaration_IFluidCodeDetailsComparer());\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_IFluidCodeDetailsConfig\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidCodeDetailsConfig():\n TypeOnly<old.IFluidCodeDetailsConfig>;\ndeclare function use_current_InterfaceDeclaration_IFluidCodeDetailsConfig(\n use: TypeOnly<current.IFluidCodeDetailsConfig>);\nuse_current_InterfaceDeclaration_IFluidCodeDetailsConfig(\n get_old_InterfaceDeclaration_IFluidCodeDetailsConfig());\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_IFluidCodeDetailsConfig\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidCodeDetailsConfig():\n TypeOnly<current.IFluidCodeDetailsConfig>;\ndeclare function use_old_InterfaceDeclaration_IFluidCodeDetailsConfig(\n use: TypeOnly<old.IFluidCodeDetailsConfig>);\nuse_old_InterfaceDeclaration_IFluidCodeDetailsConfig(\n get_current_InterfaceDeclaration_IFluidCodeDetailsConfig());\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_IFluidHandle\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidHandle():\n TypeOnly<typeof old.IFluidHandle>;\ndeclare function use_current_VariableDeclaration_IFluidHandle(\n use: TypeOnly<typeof current.IFluidHandle>);\nuse_current_VariableDeclaration_IFluidHandle(\n get_old_VariableDeclaration_IFluidHandle());\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_IFluidHandle\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidHandle():\n TypeOnly<typeof current.IFluidHandle>;\ndeclare function use_old_VariableDeclaration_IFluidHandle(\n use: TypeOnly<typeof old.IFluidHandle>);\nuse_old_VariableDeclaration_IFluidHandle(\n get_current_VariableDeclaration_IFluidHandle());\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_IFluidHandle\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidHandle():\n TypeOnly<old.IFluidHandle>;\ndeclare function use_current_InterfaceDeclaration_IFluidHandle(\n use: TypeOnly<current.IFluidHandle>);\nuse_current_InterfaceDeclaration_IFluidHandle(\n get_old_InterfaceDeclaration_IFluidHandle());\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_IFluidHandle\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidHandle():\n TypeOnly<current.IFluidHandle>;\ndeclare function use_old_InterfaceDeclaration_IFluidHandle(\n use: TypeOnly<old.IFluidHandle>);\nuse_old_InterfaceDeclaration_IFluidHandle(\n get_current_InterfaceDeclaration_IFluidHandle());\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_IFluidHandleContext\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidHandleContext():\n TypeOnly<typeof old.IFluidHandleContext>;\ndeclare function use_current_VariableDeclaration_IFluidHandleContext(\n use: TypeOnly<typeof current.IFluidHandleContext>);\nuse_current_VariableDeclaration_IFluidHandleContext(\n get_old_VariableDeclaration_IFluidHandleContext());\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_IFluidHandleContext\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidHandleContext():\n TypeOnly<typeof current.IFluidHandleContext>;\ndeclare function use_old_VariableDeclaration_IFluidHandleContext(\n use: TypeOnly<typeof old.IFluidHandleContext>);\nuse_old_VariableDeclaration_IFluidHandleContext(\n get_current_VariableDeclaration_IFluidHandleContext());\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_IFluidHandleContext\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidHandleContext():\n TypeOnly<old.IFluidHandleContext>;\ndeclare function use_current_InterfaceDeclaration_IFluidHandleContext(\n use: TypeOnly<current.IFluidHandleContext>);\nuse_current_InterfaceDeclaration_IFluidHandleContext(\n get_old_InterfaceDeclaration_IFluidHandleContext());\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_IFluidHandleContext\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidHandleContext():\n TypeOnly<current.IFluidHandleContext>;\ndeclare function use_old_InterfaceDeclaration_IFluidHandleContext(\n use: TypeOnly<old.IFluidHandleContext>);\nuse_old_InterfaceDeclaration_IFluidHandleContext(\n get_current_InterfaceDeclaration_IFluidHandleContext());\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_IFluidLoadable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidLoadable():\n TypeOnly<typeof old.IFluidLoadable>;\ndeclare function use_current_VariableDeclaration_IFluidLoadable(\n use: TypeOnly<typeof current.IFluidLoadable>);\nuse_current_VariableDeclaration_IFluidLoadable(\n get_old_VariableDeclaration_IFluidLoadable());\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_IFluidLoadable\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidLoadable():\n TypeOnly<typeof current.IFluidLoadable>;\ndeclare function use_old_VariableDeclaration_IFluidLoadable(\n use: TypeOnly<typeof old.IFluidLoadable>);\nuse_old_VariableDeclaration_IFluidLoadable(\n get_current_VariableDeclaration_IFluidLoadable());\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_IFluidLoadable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidLoadable():\n TypeOnly<old.IFluidLoadable>;\ndeclare function use_current_InterfaceDeclaration_IFluidLoadable(\n use: TypeOnly<current.IFluidLoadable>);\nuse_current_InterfaceDeclaration_IFluidLoadable(\n get_old_InterfaceDeclaration_IFluidLoadable());\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_IFluidLoadable\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidLoadable():\n TypeOnly<current.IFluidLoadable>;\ndeclare function use_old_InterfaceDeclaration_IFluidLoadable(\n use: TypeOnly<old.IFluidLoadable>);\nuse_old_InterfaceDeclaration_IFluidLoadable(\n get_current_InterfaceDeclaration_IFluidLoadable());\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_IFluidObject\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidObject():\n TypeOnly<old.IFluidObject>;\ndeclare function use_current_InterfaceDeclaration_IFluidObject(\n use: TypeOnly<current.IFluidObject>);\nuse_current_InterfaceDeclaration_IFluidObject(\n get_old_InterfaceDeclaration_IFluidObject());\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_IFluidObject\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidObject():\n TypeOnly<current.IFluidObject>;\ndeclare function use_old_InterfaceDeclaration_IFluidObject(\n use: TypeOnly<old.IFluidObject>);\nuse_old_InterfaceDeclaration_IFluidObject(\n get_current_InterfaceDeclaration_IFluidObject());\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_IFluidPackage\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidPackage():\n TypeOnly<old.IFluidPackage>;\ndeclare function use_current_InterfaceDeclaration_IFluidPackage(\n use: TypeOnly<current.IFluidPackage>);\nuse_current_InterfaceDeclaration_IFluidPackage(\n get_old_InterfaceDeclaration_IFluidPackage());\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_IFluidPackage\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidPackage():\n TypeOnly<current.IFluidPackage>;\ndeclare function use_old_InterfaceDeclaration_IFluidPackage(\n use: TypeOnly<old.IFluidPackage>);\nuse_old_InterfaceDeclaration_IFluidPackage(\n get_current_InterfaceDeclaration_IFluidPackage());\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_IFluidPackageEnvironment\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidPackageEnvironment():\n TypeOnly<old.IFluidPackageEnvironment>;\ndeclare function use_current_InterfaceDeclaration_IFluidPackageEnvironment(\n use: TypeOnly<current.IFluidPackageEnvironment>);\nuse_current_InterfaceDeclaration_IFluidPackageEnvironment(\n get_old_InterfaceDeclaration_IFluidPackageEnvironment());\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_IFluidPackageEnvironment\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidPackageEnvironment():\n TypeOnly<current.IFluidPackageEnvironment>;\ndeclare function use_old_InterfaceDeclaration_IFluidPackageEnvironment(\n use: TypeOnly<old.IFluidPackageEnvironment>);\nuse_old_InterfaceDeclaration_IFluidPackageEnvironment(\n get_current_InterfaceDeclaration_IFluidPackageEnvironment());\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_IFluidRouter\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidRouter():\n TypeOnly<typeof old.IFluidRouter>;\ndeclare function use_current_VariableDeclaration_IFluidRouter(\n use: TypeOnly<typeof current.IFluidRouter>);\nuse_current_VariableDeclaration_IFluidRouter(\n get_old_VariableDeclaration_IFluidRouter());\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_IFluidRouter\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidRouter():\n TypeOnly<typeof current.IFluidRouter>;\ndeclare function use_old_VariableDeclaration_IFluidRouter(\n use: TypeOnly<typeof old.IFluidRouter>);\nuse_old_VariableDeclaration_IFluidRouter(\n get_current_VariableDeclaration_IFluidRouter());\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_IFluidRouter\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidRouter():\n TypeOnly<old.IFluidRouter>;\ndeclare function use_current_InterfaceDeclaration_IFluidRouter(\n use: TypeOnly<current.IFluidRouter>);\nuse_current_InterfaceDeclaration_IFluidRouter(\n get_old_InterfaceDeclaration_IFluidRouter());\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_IFluidRouter\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidRouter():\n TypeOnly<current.IFluidRouter>;\ndeclare function use_old_InterfaceDeclaration_IFluidRouter(\n use: TypeOnly<old.IFluidRouter>);\nuse_old_InterfaceDeclaration_IFluidRouter(\n get_current_InterfaceDeclaration_IFluidRouter());\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_IFluidRunnable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidRunnable():\n TypeOnly<typeof old.IFluidRunnable>;\ndeclare function use_current_VariableDeclaration_IFluidRunnable(\n use: TypeOnly<typeof current.IFluidRunnable>);\nuse_current_VariableDeclaration_IFluidRunnable(\n get_old_VariableDeclaration_IFluidRunnable());\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_IFluidRunnable\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidRunnable():\n TypeOnly<typeof current.IFluidRunnable>;\ndeclare function use_old_VariableDeclaration_IFluidRunnable(\n use: TypeOnly<typeof old.IFluidRunnable>);\nuse_old_VariableDeclaration_IFluidRunnable(\n get_current_VariableDeclaration_IFluidRunnable());\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_IFluidRunnable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidRunnable():\n TypeOnly<old.IFluidRunnable>;\ndeclare function use_current_InterfaceDeclaration_IFluidRunnable(\n use: TypeOnly<current.IFluidRunnable>);\nuse_current_InterfaceDeclaration_IFluidRunnable(\n get_old_InterfaceDeclaration_IFluidRunnable());\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_IFluidRunnable\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidRunnable():\n TypeOnly<current.IFluidRunnable>;\ndeclare function use_old_InterfaceDeclaration_IFluidRunnable(\n use: TypeOnly<old.IFluidRunnable>);\nuse_old_InterfaceDeclaration_IFluidRunnable(\n get_current_InterfaceDeclaration_IFluidRunnable());\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_IProvideFluidCodeDetailsComparer\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidCodeDetailsComparer():\n TypeOnly<old.IProvideFluidCodeDetailsComparer>;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidCodeDetailsComparer(\n use: TypeOnly<current.IProvideFluidCodeDetailsComparer>);\nuse_current_InterfaceDeclaration_IProvideFluidCodeDetailsComparer(\n get_old_InterfaceDeclaration_IProvideFluidCodeDetailsComparer());\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_IProvideFluidCodeDetailsComparer\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidCodeDetailsComparer():\n TypeOnly<current.IProvideFluidCodeDetailsComparer>;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidCodeDetailsComparer(\n use: TypeOnly<old.IProvideFluidCodeDetailsComparer>);\nuse_old_InterfaceDeclaration_IProvideFluidCodeDetailsComparer(\n get_current_InterfaceDeclaration_IProvideFluidCodeDetailsComparer());\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_IProvideFluidHandle\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidHandle():\n TypeOnly<old.IProvideFluidHandle>;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidHandle(\n use: TypeOnly<current.IProvideFluidHandle>);\nuse_current_InterfaceDeclaration_IProvideFluidHandle(\n get_old_InterfaceDeclaration_IProvideFluidHandle());\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_IProvideFluidHandle\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidHandle():\n TypeOnly<current.IProvideFluidHandle>;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidHandle(\n use: TypeOnly<old.IProvideFluidHandle>);\nuse_old_InterfaceDeclaration_IProvideFluidHandle(\n get_current_InterfaceDeclaration_IProvideFluidHandle());\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_IProvideFluidHandleContext\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidHandleContext():\n TypeOnly<old.IProvideFluidHandleContext>;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidHandleContext(\n use: TypeOnly<current.IProvideFluidHandleContext>);\nuse_current_InterfaceDeclaration_IProvideFluidHandleContext(\n get_old_InterfaceDeclaration_IProvideFluidHandleContext());\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_IProvideFluidHandleContext\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidHandleContext():\n TypeOnly<current.IProvideFluidHandleContext>;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidHandleContext(\n use: TypeOnly<old.IProvideFluidHandleContext>);\nuse_old_InterfaceDeclaration_IProvideFluidHandleContext(\n get_current_InterfaceDeclaration_IProvideFluidHandleContext());\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_IProvideFluidLoadable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidLoadable():\n TypeOnly<old.IProvideFluidLoadable>;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidLoadable(\n use: TypeOnly<current.IProvideFluidLoadable>);\nuse_current_InterfaceDeclaration_IProvideFluidLoadable(\n get_old_InterfaceDeclaration_IProvideFluidLoadable());\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_IProvideFluidLoadable\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidLoadable():\n TypeOnly<current.IProvideFluidLoadable>;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidLoadable(\n use: TypeOnly<old.IProvideFluidLoadable>);\nuse_old_InterfaceDeclaration_IProvideFluidLoadable(\n get_current_InterfaceDeclaration_IProvideFluidLoadable());\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_IProvideFluidRouter\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidRouter():\n TypeOnly<old.IProvideFluidRouter>;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidRouter(\n use: TypeOnly<current.IProvideFluidRouter>);\nuse_current_InterfaceDeclaration_IProvideFluidRouter(\n get_old_InterfaceDeclaration_IProvideFluidRouter());\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_IProvideFluidRouter\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidRouter():\n TypeOnly<current.IProvideFluidRouter>;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidRouter(\n use: TypeOnly<old.IProvideFluidRouter>);\nuse_old_InterfaceDeclaration_IProvideFluidRouter(\n get_current_InterfaceDeclaration_IProvideFluidRouter());\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_IProvideFluidRunnable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidRunnable():\n TypeOnly<old.IProvideFluidRunnable>;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidRunnable(\n use: TypeOnly<current.IProvideFluidRunnable>);\nuse_current_InterfaceDeclaration_IProvideFluidRunnable(\n get_old_InterfaceDeclaration_IProvideFluidRunnable());\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_IProvideFluidRunnable\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidRunnable():\n TypeOnly<current.IProvideFluidRunnable>;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidRunnable(\n use: TypeOnly<old.IProvideFluidRunnable>);\nuse_old_InterfaceDeclaration_IProvideFluidRunnable(\n get_current_InterfaceDeclaration_IProvideFluidRunnable());\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_IRequest\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IRequest():\n TypeOnly<old.IRequest>;\ndeclare function use_current_InterfaceDeclaration_IRequest(\n use: TypeOnly<current.IRequest>);\nuse_current_InterfaceDeclaration_IRequest(\n get_old_InterfaceDeclaration_IRequest());\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_IRequest\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IRequest():\n TypeOnly<current.IRequest>;\ndeclare function use_old_InterfaceDeclaration_IRequest(\n use: TypeOnly<old.IRequest>);\nuse_old_InterfaceDeclaration_IRequest(\n get_current_InterfaceDeclaration_IRequest());\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_IRequestHeader\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IRequestHeader():\n TypeOnly<old.IRequestHeader>;\ndeclare function use_current_InterfaceDeclaration_IRequestHeader(\n use: TypeOnly<current.IRequestHeader>);\nuse_current_InterfaceDeclaration_IRequestHeader(\n get_old_InterfaceDeclaration_IRequestHeader());\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_IRequestHeader\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IRequestHeader():\n TypeOnly<current.IRequestHeader>;\ndeclare function use_old_InterfaceDeclaration_IRequestHeader(\n use: TypeOnly<old.IRequestHeader>);\nuse_old_InterfaceDeclaration_IRequestHeader(\n get_current_InterfaceDeclaration_IRequestHeader());\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_IResponse\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IResponse():\n TypeOnly<old.IResponse>;\ndeclare function use_current_InterfaceDeclaration_IResponse(\n use: TypeOnly<current.IResponse>);\nuse_current_InterfaceDeclaration_IResponse(\n get_old_InterfaceDeclaration_IResponse());\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_IResponse\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IResponse():\n TypeOnly<current.IResponse>;\ndeclare function use_old_InterfaceDeclaration_IResponse(\n use: TypeOnly<old.IResponse>);\nuse_old_InterfaceDeclaration_IResponse(\n get_current_InterfaceDeclaration_IResponse());\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_isFluidCodeDetails\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_isFluidCodeDetails():\n TypeOnly<typeof old.isFluidCodeDetails>;\ndeclare function use_current_VariableDeclaration_isFluidCodeDetails(\n use: TypeOnly<typeof current.isFluidCodeDetails>);\nuse_current_VariableDeclaration_isFluidCodeDetails(\n get_old_VariableDeclaration_isFluidCodeDetails());\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_isFluidCodeDetails\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_isFluidCodeDetails():\n TypeOnly<typeof current.isFluidCodeDetails>;\ndeclare function use_old_VariableDeclaration_isFluidCodeDetails(\n use: TypeOnly<typeof old.isFluidCodeDetails>);\nuse_old_VariableDeclaration_isFluidCodeDetails(\n get_current_VariableDeclaration_isFluidCodeDetails());\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_isFluidPackage\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_isFluidPackage():\n TypeOnly<typeof old.isFluidPackage>;\ndeclare function use_current_VariableDeclaration_isFluidPackage(\n use: TypeOnly<typeof current.isFluidPackage>);\nuse_current_VariableDeclaration_isFluidPackage(\n get_old_VariableDeclaration_isFluidPackage());\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_isFluidPackage\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_isFluidPackage():\n TypeOnly<typeof current.isFluidPackage>;\ndeclare function use_old_VariableDeclaration_isFluidPackage(\n use: TypeOnly<typeof old.isFluidPackage>);\nuse_old_VariableDeclaration_isFluidPackage(\n get_current_VariableDeclaration_isFluidPackage());\n"]}