@fluidframework/core-interfaces 0.41.0 → 0.42.0-49742

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/.eslintrc.js +1 -1
  2. package/api-report/core-interfaces.api.md +18 -18
  3. package/dist/fluidLoadable.d.ts +15 -0
  4. package/dist/fluidLoadable.d.ts.map +1 -1
  5. package/dist/fluidLoadable.js +3 -0
  6. package/dist/fluidLoadable.js.map +1 -1
  7. package/dist/fluidPackage.d.ts +25 -0
  8. package/dist/fluidPackage.d.ts.map +1 -1
  9. package/dist/fluidPackage.js +10 -0
  10. package/dist/fluidPackage.js.map +1 -1
  11. package/dist/serializer.d.ts +10 -0
  12. package/dist/serializer.d.ts.map +1 -1
  13. package/dist/serializer.js +3 -0
  14. package/dist/serializer.js.map +1 -1
  15. package/lib/fluidLoadable.d.ts +15 -0
  16. package/lib/fluidLoadable.d.ts.map +1 -1
  17. package/lib/fluidLoadable.js +3 -0
  18. package/lib/fluidLoadable.js.map +1 -1
  19. package/lib/fluidPackage.d.ts +25 -0
  20. package/lib/fluidPackage.d.ts.map +1 -1
  21. package/lib/fluidPackage.js +10 -0
  22. package/lib/fluidPackage.js.map +1 -1
  23. package/lib/serializer.d.ts +10 -0
  24. package/lib/serializer.d.ts.map +1 -1
  25. package/lib/serializer.js +3 -0
  26. package/lib/serializer.js.map +1 -1
  27. package/lib/test/types/fluidObjectTypes.d.ts +2 -0
  28. package/lib/test/types/fluidObjectTypes.d.ts.map +1 -0
  29. package/lib/test/types/fluidObjectTypes.js +80 -0
  30. package/lib/test/types/fluidObjectTypes.js.map +1 -0
  31. package/lib/test/types/validate0.41.0.d.ts +2 -0
  32. package/lib/test/types/validate0.41.0.d.ts.map +1 -0
  33. package/lib/test/types/validate0.41.0.js +78 -0
  34. package/lib/test/types/validate0.41.0.js.map +1 -0
  35. package/package.json +15 -18
  36. package/src/fluidLoadable.ts +15 -0
  37. package/src/fluidPackage.ts +25 -0
  38. package/src/serializer.ts +10 -0
  39. package/test-d/index.test-d.ts +0 -103
@@ -1 +1 @@
1
- {"version":3,"file":"serializer.js","sourceRoot":"","sources":["../src/serializer.ts"],"names":[],"mappings":"AAiBA,MAAM,CAAC,MAAM,gBAAgB,GAAkC,kBAAkB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\nimport { IFluidHandle } from \"./handles\";\n\n/**\n * JSON serialized form of an IFluidHandle\n */\nexport interface ISerializedHandle {\n // Marker to indicate to JSON.parse that the object is a Fluid handle\n type: \"__fluid_handle__\";\n\n // URL to the object. Relative URLs are relative to the handle context passed to the stringify.\n url: string;\n}\n\nexport const IFluidSerializer: keyof IProvideFluidSerializer = \"IFluidSerializer\";\n\nexport interface IProvideFluidSerializer {\n readonly IFluidSerializer: IFluidSerializer;\n}\n\nexport interface IFluidSerializer extends IProvideFluidSerializer {\n /**\n * Given a mostly-plain object that may have handle objects embedded within, will return a fully-plain object\n * where any embedded IFluidHandles have been replaced with a serializable form.\n *\n * The original `input` object is not mutated. This method will shallowly clones all objects in the path from\n * the root to any replaced handles. (If no handles are found, returns the original object.)\n */\n replaceHandles(value: any, bind: IFluidHandle): any;\n\n /**\n * Given a fully-jsonable object tree that may have encoded handle objects embedded within, will return an\n * equivalent object tree where any encoded IFluidHandles have been replaced with thier decoded form.\n *\n * The original `input` object is not mutated. This method will shallowly clones all objects in the path from\n * the root to any replaced handles. (If no handles are found, returns the original object.)\n *\n * The decoded handles are implicitly bound to the handle context of this serializer.\n */\n decode?(input: any): any;\n\n /**\n * Stringifies a given value. Converts any IFluidHandle to its stringified equivalent.\n */\n stringify(value: any, bind: IFluidHandle): string;\n\n /**\n * Parses the given JSON input string and returns the JavaScript object defined by it. Any Fluid\n * handles will be realized as part of the parse\n */\n parse(value: string): any;\n}\n"]}
1
+ {"version":3,"file":"serializer.js","sourceRoot":"","sources":["../src/serializer.ts"],"names":[],"mappings":"AAkBA;;GAEG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAkC,kBAAkB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\nimport { IFluidHandle } from \"./handles\";\n\n/**\n * JSON serialized form of an IFluidHandle\n * @deprecated - Moved to fluidframework/shared-object-base package\n */\nexport interface ISerializedHandle {\n // Marker to indicate to JSON.parse that the object is a Fluid handle\n type: \"__fluid_handle__\";\n\n // URL to the object. Relative URLs are relative to the handle context passed to the stringify.\n url: string;\n}\n\n/**\n * @deprecated - Moved to fluidframework/shared-object-base package\n */\nexport const IFluidSerializer: keyof IProvideFluidSerializer = \"IFluidSerializer\";\n\n/**\n * @deprecated - Moved to fluidframework/shared-object-base package\n */\nexport interface IProvideFluidSerializer {\n readonly IFluidSerializer: IFluidSerializer;\n}\n\n/**\n * @deprecated - Moved to fluidframework/shared-object-base package\n */\nexport interface IFluidSerializer extends IProvideFluidSerializer {\n /**\n * Given a mostly-plain object that may have handle objects embedded within, will return a fully-plain object\n * where any embedded IFluidHandles have been replaced with a serializable form.\n *\n * The original `input` object is not mutated. This method will shallowly clones all objects in the path from\n * the root to any replaced handles. (If no handles are found, returns the original object.)\n */\n replaceHandles(value: any, bind: IFluidHandle): any;\n\n /**\n * Given a fully-jsonable object tree that may have encoded handle objects embedded within, will return an\n * equivalent object tree where any encoded IFluidHandles have been replaced with thier decoded form.\n *\n * The original `input` object is not mutated. This method will shallowly clones all objects in the path from\n * the root to any replaced handles. (If no handles are found, returns the original object.)\n *\n * The decoded handles are implicitly bound to the handle context of this serializer.\n */\n decode?(input: any): any;\n\n /**\n * Stringifies a given value. Converts any IFluidHandle to its stringified equivalent.\n */\n stringify(value: any, bind: IFluidHandle): string;\n\n /**\n * Parses the given JSON input string and returns the JavaScript object defined by it. Any Fluid\n * handles will be realized as part of the parse\n */\n parse(value: string): any;\n}\n"]}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=fluidObjectTypes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fluidObjectTypes.d.ts","sourceRoot":"","sources":["../../../src/test/types/fluidObjectTypes.ts"],"names":[],"mappings":""}
@@ -0,0 +1,80 @@
1
+ var _a, _b, _c;
2
+ /*!
3
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
4
+ * Licensed under the MIT License.
5
+ */
6
+ import { IFluidLoadable } from "../../";
7
+ // test implicit conversions between FluidObject and a FluidObject with a provides interface
8
+ {
9
+ const provider = getFluidObject();
10
+ useFluidObject(provider);
11
+ useFluidObject(provider.IFluidLoadable);
12
+ useProvider(provider);
13
+ useProvider(provider.IFluidLoadable);
14
+ useLoadable(provider);
15
+ useLoadable(provider.IFluidLoadable);
16
+ // @ts-expect-error provider shouldn't have any non-provider properties
17
+ use(provider.handle);
18
+ use((_a = provider.IFluidLoadable) === null || _a === void 0 ? void 0 : _a.handle);
19
+ const unknown = provider.IFluidLoadable;
20
+ useFluidObject(unknown);
21
+ useProvider(unknown);
22
+ useProvider(unknown);
23
+ useLoadable(unknown);
24
+ }
25
+ // test implicit conversions between FluidObject and a FluidObject with a implementation interface
26
+ {
27
+ const foo = getFluidObject();
28
+ useFluidObject(foo);
29
+ useFluidObject(foo.IFluidLoadable);
30
+ useProvider(foo);
31
+ useProvider(foo.IFluidLoadable);
32
+ useLoadable(foo);
33
+ useLoadable(foo.IFluidLoadable);
34
+ // @ts-expect-error provider shouldn't have any non-provider properties
35
+ use(foo.handle);
36
+ use((_b = foo.IFluidLoadable) === null || _b === void 0 ? void 0 : _b.handle);
37
+ const unknown = foo.IFluidLoadable;
38
+ useFluidObject(unknown);
39
+ useProvider(unknown);
40
+ useProvider(unknown);
41
+ useLoadable(unknown);
42
+ }
43
+ // test getting keys
44
+ {
45
+ useProviderKey(IFluidLoadable);
46
+ useProviderKey(IFluidLoadable);
47
+ const loadableKey = "handle";
48
+ // @ts-expect-error provider shouldn't have any non-provider properties
49
+ useProviderKey(loadableKey);
50
+ }
51
+ // test implicit conversions between FluidObject and a FluidObject with a partial provider interface
52
+ {
53
+ const foo = getFluidObject();
54
+ useFluidObject(foo);
55
+ useFluidObject(foo.IFoo);
56
+ useProvider(foo);
57
+ useProvider(foo.IFoo);
58
+ (_c = foo.IFoo) === null || _c === void 0 ? void 0 : _c.doFoo();
59
+ const fooKey = "doFoo";
60
+ // @ts-expect-error provider shouldn't have any non-provider properties
61
+ useProviderKey(fooKey);
62
+ const unknown = foo.IFoo;
63
+ useFluidObject(unknown);
64
+ useProvider(unknown);
65
+ useProvider(unknown);
66
+ useLoadable(unknown);
67
+ }
68
+ {
69
+ const fluidObject = getIFluidObject();
70
+ const legacy = getFluidObject();
71
+ useLoadable(fluidObject);
72
+ useLoadable(legacy);
73
+ useFluidObject(fluidObject);
74
+ useFluidObject(legacy);
75
+ useProvider(legacy);
76
+ useProvider(fluidObject);
77
+ useProvider(legacy);
78
+ useProvider(fluidObject);
79
+ }
80
+ //# sourceMappingURL=fluidObjectTypes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fluidObjectTypes.js","sourceRoot":"","sources":["../../../src/test/types/fluidObjectTypes.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 */\nimport { IFluidLoadable, IProvideFluidLoadable, FluidObject, FluidObjectKeys, IFluidObject } from \"../../\";\n\ndeclare function getFluidObject(): FluidObject;\n\ndeclare function useFluidObject(params: FluidObject | undefined): void;\n\ndeclare function useProvider<T extends FluidObject>(params: FluidObject<T> | undefined): void;\n\ndeclare function useProviderKey<T,TKey extends FluidObjectKeys<T> = FluidObjectKeys<T>>(key: TKey): void;\n\ndeclare function useLoadable(params: FluidObject<IFluidLoadable> | undefined): void;\n\ndeclare function use(obj: any);\n// test implicit conversions between FluidObject and a FluidObject with a provides interface\n{\n const provider: FluidObject<IProvideFluidLoadable> = getFluidObject();\n useFluidObject(provider);\n useFluidObject(provider.IFluidLoadable);\n useProvider(provider);\n useProvider(provider.IFluidLoadable);\n useLoadable(provider);\n useLoadable(provider.IFluidLoadable);\n // @ts-expect-error provider shouldn't have any non-provider properties\n use(provider.handle);\n use(provider.IFluidLoadable?.handle);\n const unknown: FluidObject | undefined = provider.IFluidLoadable;\n useFluidObject(unknown);\n useProvider(unknown);\n useProvider<IFluidLoadable>(unknown);\n useLoadable(unknown);\n}\n\n// test implicit conversions between FluidObject and a FluidObject with a implementation interface\n{\n const foo: FluidObject<IFluidLoadable> = getFluidObject();\n useFluidObject(foo);\n useFluidObject(foo.IFluidLoadable);\n useProvider(foo);\n useProvider(foo.IFluidLoadable);\n useLoadable(foo);\n useLoadable(foo.IFluidLoadable);\n // @ts-expect-error provider shouldn't have any non-provider properties\n use(foo.handle);\n use(foo.IFluidLoadable?.handle);\n const unknown: FluidObject | undefined = foo.IFluidLoadable;\n useFluidObject(unknown);\n useProvider(unknown);\n useProvider<IFluidLoadable>(unknown);\n useLoadable(unknown);\n}\n\n// test getting keys\n{\n useProviderKey<IProvideFluidLoadable>(IFluidLoadable);\n useProviderKey<IFluidLoadable>(IFluidLoadable);\n const loadableKey: keyof IFluidLoadable = \"handle\";\n // @ts-expect-error provider shouldn't have any non-provider properties\n useProviderKey<IFluidLoadable>(loadableKey);\n}\n\n// test implicit conversions between FluidObject and a FluidObject with a partial provider interface\n{\n interface IProvideFoo{\n IFoo: IFoo;\n }\n interface IFoo extends Partial<IProvideFoo>{\n doFoo();\n }\n\n const foo: FluidObject<IFoo> = getFluidObject();\n useFluidObject(foo);\n useFluidObject(foo.IFoo);\n useProvider(foo);\n useProvider(foo.IFoo);\n foo.IFoo?.doFoo();\n const fooKey: keyof IFoo = \"doFoo\";\n // @ts-expect-error provider shouldn't have any non-provider properties\n useProviderKey<IFoo>(fooKey);\n const unknown: FluidObject | undefined = foo.IFoo;\n useFluidObject(unknown);\n useProvider(unknown);\n useProvider<IFoo>(unknown);\n useLoadable(unknown);\n}\n\n// test implicit conversions between FluidObject and IFluidObject for backcompat\ndeclare function getIFluidObject(): IFluidObject;\n{\n const fluidObject: FluidObject = getIFluidObject();\n const legacy: IFluidObject = getFluidObject();\n useLoadable(fluidObject);\n useLoadable(legacy);\n useFluidObject(fluidObject);\n useFluidObject(legacy);\n useProvider(legacy);\n useProvider(fluidObject);\n useProvider<IFluidLoadable>(legacy);\n useProvider<IFluidLoadable>(fluidObject);\n}\n"]}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=validate0.41.0.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"validate0.41.0.d.ts","sourceRoot":"","sources":["../../../src/test/types/validate0.41.0.ts"],"names":[],"mappings":""}
@@ -0,0 +1,78 @@
1
+ use_current_TypeAliasDeclaration_FluidObject(get_old_TypeAliasDeclaration_FluidObject());
2
+ use_old_TypeAliasDeclaration_FluidObject(get_current_TypeAliasDeclaration_FluidObject());
3
+ use_current_TypeAliasDeclaration_FluidObjectKeys(get_old_TypeAliasDeclaration_FluidObjectKeys());
4
+ use_old_TypeAliasDeclaration_FluidObjectKeys(get_current_TypeAliasDeclaration_FluidObjectKeys());
5
+ use_current_TypeAliasDeclaration_FluidObjectProviderKeys(get_old_TypeAliasDeclaration_FluidObjectProviderKeys());
6
+ use_old_TypeAliasDeclaration_FluidObjectProviderKeys(get_current_TypeAliasDeclaration_FluidObjectProviderKeys());
7
+ use_current_InterfaceDeclaration_IFluidCodeDetails(get_old_InterfaceDeclaration_IFluidCodeDetails());
8
+ use_old_InterfaceDeclaration_IFluidCodeDetails(get_current_InterfaceDeclaration_IFluidCodeDetails());
9
+ use_current_VariableDeclaration_IFluidCodeDetailsComparer(get_old_VariableDeclaration_IFluidCodeDetailsComparer());
10
+ use_old_VariableDeclaration_IFluidCodeDetailsComparer(get_current_VariableDeclaration_IFluidCodeDetailsComparer());
11
+ use_current_InterfaceDeclaration_IFluidCodeDetailsComparer(get_old_InterfaceDeclaration_IFluidCodeDetailsComparer());
12
+ use_old_InterfaceDeclaration_IFluidCodeDetailsComparer(get_current_InterfaceDeclaration_IFluidCodeDetailsComparer());
13
+ use_current_InterfaceDeclaration_IFluidCodeDetailsConfig(get_old_InterfaceDeclaration_IFluidCodeDetailsConfig());
14
+ use_old_InterfaceDeclaration_IFluidCodeDetailsConfig(get_current_InterfaceDeclaration_IFluidCodeDetailsConfig());
15
+ use_current_VariableDeclaration_IFluidConfiguration(get_old_VariableDeclaration_IFluidConfiguration());
16
+ use_old_VariableDeclaration_IFluidConfiguration(get_current_VariableDeclaration_IFluidConfiguration());
17
+ use_current_InterfaceDeclaration_IFluidConfiguration(get_old_InterfaceDeclaration_IFluidConfiguration());
18
+ use_old_InterfaceDeclaration_IFluidConfiguration(get_current_InterfaceDeclaration_IFluidConfiguration());
19
+ use_current_VariableDeclaration_IFluidHandle(get_old_VariableDeclaration_IFluidHandle());
20
+ use_old_VariableDeclaration_IFluidHandle(get_current_VariableDeclaration_IFluidHandle());
21
+ use_current_InterfaceDeclaration_IFluidHandle(get_old_InterfaceDeclaration_IFluidHandle());
22
+ use_old_InterfaceDeclaration_IFluidHandle(get_current_InterfaceDeclaration_IFluidHandle());
23
+ use_current_VariableDeclaration_IFluidHandleContext(get_old_VariableDeclaration_IFluidHandleContext());
24
+ use_old_VariableDeclaration_IFluidHandleContext(get_current_VariableDeclaration_IFluidHandleContext());
25
+ use_current_InterfaceDeclaration_IFluidHandleContext(get_old_InterfaceDeclaration_IFluidHandleContext());
26
+ use_old_InterfaceDeclaration_IFluidHandleContext(get_current_InterfaceDeclaration_IFluidHandleContext());
27
+ use_current_VariableDeclaration_IFluidLoadable(get_old_VariableDeclaration_IFluidLoadable());
28
+ use_old_VariableDeclaration_IFluidLoadable(get_current_VariableDeclaration_IFluidLoadable());
29
+ use_current_InterfaceDeclaration_IFluidLoadable(get_old_InterfaceDeclaration_IFluidLoadable());
30
+ use_old_InterfaceDeclaration_IFluidLoadable(get_current_InterfaceDeclaration_IFluidLoadable());
31
+ use_current_InterfaceDeclaration_IFluidObject(get_old_InterfaceDeclaration_IFluidObject());
32
+ use_old_InterfaceDeclaration_IFluidObject(get_current_InterfaceDeclaration_IFluidObject());
33
+ use_current_InterfaceDeclaration_IFluidPackage(get_old_InterfaceDeclaration_IFluidPackage());
34
+ use_old_InterfaceDeclaration_IFluidPackage(get_current_InterfaceDeclaration_IFluidPackage());
35
+ use_current_InterfaceDeclaration_IFluidPackageEnvironment(get_old_InterfaceDeclaration_IFluidPackageEnvironment());
36
+ use_old_InterfaceDeclaration_IFluidPackageEnvironment(get_current_InterfaceDeclaration_IFluidPackageEnvironment());
37
+ use_current_VariableDeclaration_IFluidRouter(get_old_VariableDeclaration_IFluidRouter());
38
+ use_old_VariableDeclaration_IFluidRouter(get_current_VariableDeclaration_IFluidRouter());
39
+ use_current_InterfaceDeclaration_IFluidRouter(get_old_InterfaceDeclaration_IFluidRouter());
40
+ use_old_InterfaceDeclaration_IFluidRouter(get_current_InterfaceDeclaration_IFluidRouter());
41
+ use_current_VariableDeclaration_IFluidRunnable(get_old_VariableDeclaration_IFluidRunnable());
42
+ use_old_VariableDeclaration_IFluidRunnable(get_current_VariableDeclaration_IFluidRunnable());
43
+ use_current_InterfaceDeclaration_IFluidRunnable(get_old_InterfaceDeclaration_IFluidRunnable());
44
+ use_old_InterfaceDeclaration_IFluidRunnable(get_current_InterfaceDeclaration_IFluidRunnable());
45
+ use_current_VariableDeclaration_IFluidSerializer(get_old_VariableDeclaration_IFluidSerializer());
46
+ use_old_VariableDeclaration_IFluidSerializer(get_current_VariableDeclaration_IFluidSerializer());
47
+ use_current_InterfaceDeclaration_IFluidSerializer(get_old_InterfaceDeclaration_IFluidSerializer());
48
+ use_old_InterfaceDeclaration_IFluidSerializer(get_current_InterfaceDeclaration_IFluidSerializer());
49
+ use_current_InterfaceDeclaration_IProvideFluidCodeDetailsComparer(get_old_InterfaceDeclaration_IProvideFluidCodeDetailsComparer());
50
+ use_old_InterfaceDeclaration_IProvideFluidCodeDetailsComparer(get_current_InterfaceDeclaration_IProvideFluidCodeDetailsComparer());
51
+ use_current_InterfaceDeclaration_IProvideFluidConfiguration(get_old_InterfaceDeclaration_IProvideFluidConfiguration());
52
+ use_old_InterfaceDeclaration_IProvideFluidConfiguration(get_current_InterfaceDeclaration_IProvideFluidConfiguration());
53
+ use_current_InterfaceDeclaration_IProvideFluidHandle(get_old_InterfaceDeclaration_IProvideFluidHandle());
54
+ use_old_InterfaceDeclaration_IProvideFluidHandle(get_current_InterfaceDeclaration_IProvideFluidHandle());
55
+ use_current_InterfaceDeclaration_IProvideFluidHandleContext(get_old_InterfaceDeclaration_IProvideFluidHandleContext());
56
+ use_old_InterfaceDeclaration_IProvideFluidHandleContext(get_current_InterfaceDeclaration_IProvideFluidHandleContext());
57
+ use_current_InterfaceDeclaration_IProvideFluidLoadable(get_old_InterfaceDeclaration_IProvideFluidLoadable());
58
+ use_old_InterfaceDeclaration_IProvideFluidLoadable(get_current_InterfaceDeclaration_IProvideFluidLoadable());
59
+ use_current_InterfaceDeclaration_IProvideFluidRouter(get_old_InterfaceDeclaration_IProvideFluidRouter());
60
+ use_old_InterfaceDeclaration_IProvideFluidRouter(get_current_InterfaceDeclaration_IProvideFluidRouter());
61
+ use_current_InterfaceDeclaration_IProvideFluidRunnable(get_old_InterfaceDeclaration_IProvideFluidRunnable());
62
+ use_old_InterfaceDeclaration_IProvideFluidRunnable(get_current_InterfaceDeclaration_IProvideFluidRunnable());
63
+ use_current_InterfaceDeclaration_IProvideFluidSerializer(get_old_InterfaceDeclaration_IProvideFluidSerializer());
64
+ use_old_InterfaceDeclaration_IProvideFluidSerializer(get_current_InterfaceDeclaration_IProvideFluidSerializer());
65
+ use_current_InterfaceDeclaration_IRequest(get_old_InterfaceDeclaration_IRequest());
66
+ use_old_InterfaceDeclaration_IRequest(get_current_InterfaceDeclaration_IRequest());
67
+ use_current_InterfaceDeclaration_IRequestHeader(get_old_InterfaceDeclaration_IRequestHeader());
68
+ use_old_InterfaceDeclaration_IRequestHeader(get_current_InterfaceDeclaration_IRequestHeader());
69
+ use_current_InterfaceDeclaration_IResponse(get_old_InterfaceDeclaration_IResponse());
70
+ use_old_InterfaceDeclaration_IResponse(get_current_InterfaceDeclaration_IResponse());
71
+ use_current_InterfaceDeclaration_ISerializedHandle(get_old_InterfaceDeclaration_ISerializedHandle());
72
+ use_old_InterfaceDeclaration_ISerializedHandle(get_current_InterfaceDeclaration_ISerializedHandle());
73
+ use_current_VariableDeclaration_isFluidCodeDetails(get_old_VariableDeclaration_isFluidCodeDetails());
74
+ use_old_VariableDeclaration_isFluidCodeDetails(get_current_VariableDeclaration_isFluidCodeDetails());
75
+ use_current_VariableDeclaration_isFluidPackage(get_old_VariableDeclaration_isFluidPackage());
76
+ use_old_VariableDeclaration_isFluidPackage(get_current_VariableDeclaration_isFluidPackage());
77
+ export {};
78
+ //# sourceMappingURL=validate0.41.0.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"validate0.41.0.js","sourceRoot":"","sources":["../../../src/test/types/validate0.41.0.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-0.41.0\";\nimport * as current from \"../../index\";\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken.0.41.0:\n* \"TypeAliasDeclaration_FluidObject\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_TypeAliasDeclaration_FluidObject():\n old.FluidObject;\ndeclare function use_current_TypeAliasDeclaration_FluidObject(\n use: 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.0.41.0:\n* \"TypeAliasDeclaration_FluidObject\": {\"backCompat\": false}\n*/\ndeclare function get_current_TypeAliasDeclaration_FluidObject():\n current.FluidObject;\ndeclare function use_old_TypeAliasDeclaration_FluidObject(\n use: 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.0.41.0:\n* \"TypeAliasDeclaration_FluidObjectKeys\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_TypeAliasDeclaration_FluidObjectKeys():\n old.FluidObjectKeys<any>;\ndeclare function use_current_TypeAliasDeclaration_FluidObjectKeys(\n use: 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.0.41.0:\n* \"TypeAliasDeclaration_FluidObjectKeys\": {\"backCompat\": false}\n*/\ndeclare function get_current_TypeAliasDeclaration_FluidObjectKeys():\n current.FluidObjectKeys<any>;\ndeclare function use_old_TypeAliasDeclaration_FluidObjectKeys(\n use: 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.0.41.0:\n* \"TypeAliasDeclaration_FluidObjectProviderKeys\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_TypeAliasDeclaration_FluidObjectProviderKeys():\n old.FluidObjectProviderKeys<any,any>;\ndeclare function use_current_TypeAliasDeclaration_FluidObjectProviderKeys(\n use: 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.0.41.0:\n* \"TypeAliasDeclaration_FluidObjectProviderKeys\": {\"backCompat\": false}\n*/\ndeclare function get_current_TypeAliasDeclaration_FluidObjectProviderKeys():\n current.FluidObjectProviderKeys<any,any>;\ndeclare function use_old_TypeAliasDeclaration_FluidObjectProviderKeys(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidCodeDetails\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidCodeDetails():\n old.IFluidCodeDetails;\ndeclare function use_current_InterfaceDeclaration_IFluidCodeDetails(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidCodeDetails\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidCodeDetails():\n current.IFluidCodeDetails;\ndeclare function use_old_InterfaceDeclaration_IFluidCodeDetails(\n use: 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.0.41.0:\n* \"VariableDeclaration_IFluidCodeDetailsComparer\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidCodeDetailsComparer():\n typeof old.IFluidCodeDetailsComparer;\ndeclare function use_current_VariableDeclaration_IFluidCodeDetailsComparer(\n use: 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.0.41.0:\n* \"VariableDeclaration_IFluidCodeDetailsComparer\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidCodeDetailsComparer():\n typeof current.IFluidCodeDetailsComparer;\ndeclare function use_old_VariableDeclaration_IFluidCodeDetailsComparer(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidCodeDetailsComparer\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidCodeDetailsComparer():\n old.IFluidCodeDetailsComparer;\ndeclare function use_current_InterfaceDeclaration_IFluidCodeDetailsComparer(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidCodeDetailsComparer\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidCodeDetailsComparer():\n current.IFluidCodeDetailsComparer;\ndeclare function use_old_InterfaceDeclaration_IFluidCodeDetailsComparer(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidCodeDetailsConfig\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidCodeDetailsConfig():\n old.IFluidCodeDetailsConfig;\ndeclare function use_current_InterfaceDeclaration_IFluidCodeDetailsConfig(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidCodeDetailsConfig\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidCodeDetailsConfig():\n current.IFluidCodeDetailsConfig;\ndeclare function use_old_InterfaceDeclaration_IFluidCodeDetailsConfig(\n use: 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.0.41.0:\n* \"VariableDeclaration_IFluidConfiguration\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidConfiguration():\n typeof old.IFluidConfiguration;\ndeclare function use_current_VariableDeclaration_IFluidConfiguration(\n use: typeof current.IFluidConfiguration);\nuse_current_VariableDeclaration_IFluidConfiguration(\n get_old_VariableDeclaration_IFluidConfiguration());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken.0.41.0:\n* \"VariableDeclaration_IFluidConfiguration\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidConfiguration():\n typeof current.IFluidConfiguration;\ndeclare function use_old_VariableDeclaration_IFluidConfiguration(\n use: typeof old.IFluidConfiguration);\nuse_old_VariableDeclaration_IFluidConfiguration(\n get_current_VariableDeclaration_IFluidConfiguration());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken.0.41.0:\n* \"InterfaceDeclaration_IFluidConfiguration\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidConfiguration():\n old.IFluidConfiguration;\ndeclare function use_current_InterfaceDeclaration_IFluidConfiguration(\n use: current.IFluidConfiguration);\nuse_current_InterfaceDeclaration_IFluidConfiguration(\n get_old_InterfaceDeclaration_IFluidConfiguration());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken.0.41.0:\n* \"InterfaceDeclaration_IFluidConfiguration\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidConfiguration():\n current.IFluidConfiguration;\ndeclare function use_old_InterfaceDeclaration_IFluidConfiguration(\n use: old.IFluidConfiguration);\nuse_old_InterfaceDeclaration_IFluidConfiguration(\n get_current_InterfaceDeclaration_IFluidConfiguration());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken.0.41.0:\n* \"VariableDeclaration_IFluidHandle\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidHandle():\n typeof old.IFluidHandle;\ndeclare function use_current_VariableDeclaration_IFluidHandle(\n use: 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.0.41.0:\n* \"VariableDeclaration_IFluidHandle\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidHandle():\n typeof current.IFluidHandle;\ndeclare function use_old_VariableDeclaration_IFluidHandle(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidHandle\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidHandle():\n old.IFluidHandle;\ndeclare function use_current_InterfaceDeclaration_IFluidHandle(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidHandle\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidHandle():\n current.IFluidHandle;\ndeclare function use_old_InterfaceDeclaration_IFluidHandle(\n use: 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.0.41.0:\n* \"VariableDeclaration_IFluidHandleContext\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidHandleContext():\n typeof old.IFluidHandleContext;\ndeclare function use_current_VariableDeclaration_IFluidHandleContext(\n use: 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.0.41.0:\n* \"VariableDeclaration_IFluidHandleContext\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidHandleContext():\n typeof current.IFluidHandleContext;\ndeclare function use_old_VariableDeclaration_IFluidHandleContext(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidHandleContext\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidHandleContext():\n old.IFluidHandleContext;\ndeclare function use_current_InterfaceDeclaration_IFluidHandleContext(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidHandleContext\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidHandleContext():\n current.IFluidHandleContext;\ndeclare function use_old_InterfaceDeclaration_IFluidHandleContext(\n use: 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.0.41.0:\n* \"VariableDeclaration_IFluidLoadable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidLoadable():\n typeof old.IFluidLoadable;\ndeclare function use_current_VariableDeclaration_IFluidLoadable(\n use: 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.0.41.0:\n* \"VariableDeclaration_IFluidLoadable\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidLoadable():\n typeof current.IFluidLoadable;\ndeclare function use_old_VariableDeclaration_IFluidLoadable(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidLoadable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidLoadable():\n old.IFluidLoadable;\ndeclare function use_current_InterfaceDeclaration_IFluidLoadable(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidLoadable\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidLoadable():\n current.IFluidLoadable;\ndeclare function use_old_InterfaceDeclaration_IFluidLoadable(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidObject\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidObject():\n old.IFluidObject;\ndeclare function use_current_InterfaceDeclaration_IFluidObject(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidObject\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidObject():\n current.IFluidObject;\ndeclare function use_old_InterfaceDeclaration_IFluidObject(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidPackage\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidPackage():\n old.IFluidPackage;\ndeclare function use_current_InterfaceDeclaration_IFluidPackage(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidPackage\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidPackage():\n current.IFluidPackage;\ndeclare function use_old_InterfaceDeclaration_IFluidPackage(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidPackageEnvironment\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidPackageEnvironment():\n old.IFluidPackageEnvironment;\ndeclare function use_current_InterfaceDeclaration_IFluidPackageEnvironment(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidPackageEnvironment\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidPackageEnvironment():\n current.IFluidPackageEnvironment;\ndeclare function use_old_InterfaceDeclaration_IFluidPackageEnvironment(\n use: 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.0.41.0:\n* \"VariableDeclaration_IFluidRouter\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidRouter():\n typeof old.IFluidRouter;\ndeclare function use_current_VariableDeclaration_IFluidRouter(\n use: 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.0.41.0:\n* \"VariableDeclaration_IFluidRouter\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidRouter():\n typeof current.IFluidRouter;\ndeclare function use_old_VariableDeclaration_IFluidRouter(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidRouter\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidRouter():\n old.IFluidRouter;\ndeclare function use_current_InterfaceDeclaration_IFluidRouter(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidRouter\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidRouter():\n current.IFluidRouter;\ndeclare function use_old_InterfaceDeclaration_IFluidRouter(\n use: 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.0.41.0:\n* \"VariableDeclaration_IFluidRunnable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidRunnable():\n typeof old.IFluidRunnable;\ndeclare function use_current_VariableDeclaration_IFluidRunnable(\n use: 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.0.41.0:\n* \"VariableDeclaration_IFluidRunnable\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidRunnable():\n typeof current.IFluidRunnable;\ndeclare function use_old_VariableDeclaration_IFluidRunnable(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidRunnable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidRunnable():\n old.IFluidRunnable;\ndeclare function use_current_InterfaceDeclaration_IFluidRunnable(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IFluidRunnable\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidRunnable():\n current.IFluidRunnable;\ndeclare function use_old_InterfaceDeclaration_IFluidRunnable(\n use: 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.0.41.0:\n* \"VariableDeclaration_IFluidSerializer\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_IFluidSerializer():\n typeof old.IFluidSerializer;\ndeclare function use_current_VariableDeclaration_IFluidSerializer(\n use: typeof current.IFluidSerializer);\nuse_current_VariableDeclaration_IFluidSerializer(\n get_old_VariableDeclaration_IFluidSerializer());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken.0.41.0:\n* \"VariableDeclaration_IFluidSerializer\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_IFluidSerializer():\n typeof current.IFluidSerializer;\ndeclare function use_old_VariableDeclaration_IFluidSerializer(\n use: typeof old.IFluidSerializer);\nuse_old_VariableDeclaration_IFluidSerializer(\n get_current_VariableDeclaration_IFluidSerializer());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken.0.41.0:\n* \"InterfaceDeclaration_IFluidSerializer\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IFluidSerializer():\n old.IFluidSerializer;\ndeclare function use_current_InterfaceDeclaration_IFluidSerializer(\n use: current.IFluidSerializer);\nuse_current_InterfaceDeclaration_IFluidSerializer(\n get_old_InterfaceDeclaration_IFluidSerializer());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken.0.41.0:\n* \"InterfaceDeclaration_IFluidSerializer\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IFluidSerializer():\n current.IFluidSerializer;\ndeclare function use_old_InterfaceDeclaration_IFluidSerializer(\n use: old.IFluidSerializer);\nuse_old_InterfaceDeclaration_IFluidSerializer(\n get_current_InterfaceDeclaration_IFluidSerializer());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken.0.41.0:\n* \"InterfaceDeclaration_IProvideFluidCodeDetailsComparer\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidCodeDetailsComparer():\n old.IProvideFluidCodeDetailsComparer;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidCodeDetailsComparer(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IProvideFluidCodeDetailsComparer\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidCodeDetailsComparer():\n current.IProvideFluidCodeDetailsComparer;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidCodeDetailsComparer(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IProvideFluidConfiguration\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidConfiguration():\n old.IProvideFluidConfiguration;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidConfiguration(\n use: current.IProvideFluidConfiguration);\nuse_current_InterfaceDeclaration_IProvideFluidConfiguration(\n get_old_InterfaceDeclaration_IProvideFluidConfiguration());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken.0.41.0:\n* \"InterfaceDeclaration_IProvideFluidConfiguration\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidConfiguration():\n current.IProvideFluidConfiguration;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidConfiguration(\n use: old.IProvideFluidConfiguration);\nuse_old_InterfaceDeclaration_IProvideFluidConfiguration(\n get_current_InterfaceDeclaration_IProvideFluidConfiguration());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken.0.41.0:\n* \"InterfaceDeclaration_IProvideFluidHandle\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidHandle():\n old.IProvideFluidHandle;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidHandle(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IProvideFluidHandle\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidHandle():\n current.IProvideFluidHandle;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidHandle(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IProvideFluidHandleContext\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidHandleContext():\n old.IProvideFluidHandleContext;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidHandleContext(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IProvideFluidHandleContext\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidHandleContext():\n current.IProvideFluidHandleContext;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidHandleContext(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IProvideFluidLoadable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidLoadable():\n old.IProvideFluidLoadable;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidLoadable(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IProvideFluidLoadable\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidLoadable():\n current.IProvideFluidLoadable;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidLoadable(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IProvideFluidRouter\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidRouter():\n old.IProvideFluidRouter;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidRouter(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IProvideFluidRouter\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidRouter():\n current.IProvideFluidRouter;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidRouter(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IProvideFluidRunnable\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidRunnable():\n old.IProvideFluidRunnable;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidRunnable(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IProvideFluidRunnable\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidRunnable():\n current.IProvideFluidRunnable;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidRunnable(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IProvideFluidSerializer\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideFluidSerializer():\n old.IProvideFluidSerializer;\ndeclare function use_current_InterfaceDeclaration_IProvideFluidSerializer(\n use: current.IProvideFluidSerializer);\nuse_current_InterfaceDeclaration_IProvideFluidSerializer(\n get_old_InterfaceDeclaration_IProvideFluidSerializer());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken.0.41.0:\n* \"InterfaceDeclaration_IProvideFluidSerializer\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideFluidSerializer():\n current.IProvideFluidSerializer;\ndeclare function use_old_InterfaceDeclaration_IProvideFluidSerializer(\n use: old.IProvideFluidSerializer);\nuse_old_InterfaceDeclaration_IProvideFluidSerializer(\n get_current_InterfaceDeclaration_IProvideFluidSerializer());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken.0.41.0:\n* \"InterfaceDeclaration_IRequest\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IRequest():\n old.IRequest;\ndeclare function use_current_InterfaceDeclaration_IRequest(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IRequest\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IRequest():\n current.IRequest;\ndeclare function use_old_InterfaceDeclaration_IRequest(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IRequestHeader\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IRequestHeader():\n old.IRequestHeader;\ndeclare function use_current_InterfaceDeclaration_IRequestHeader(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IRequestHeader\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IRequestHeader():\n current.IRequestHeader;\ndeclare function use_old_InterfaceDeclaration_IRequestHeader(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IResponse\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IResponse():\n old.IResponse;\ndeclare function use_current_InterfaceDeclaration_IResponse(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_IResponse\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IResponse():\n current.IResponse;\ndeclare function use_old_InterfaceDeclaration_IResponse(\n use: 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.0.41.0:\n* \"InterfaceDeclaration_ISerializedHandle\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_ISerializedHandle():\n old.ISerializedHandle;\ndeclare function use_current_InterfaceDeclaration_ISerializedHandle(\n use: current.ISerializedHandle);\nuse_current_InterfaceDeclaration_ISerializedHandle(\n get_old_InterfaceDeclaration_ISerializedHandle());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken.0.41.0:\n* \"InterfaceDeclaration_ISerializedHandle\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_ISerializedHandle():\n current.ISerializedHandle;\ndeclare function use_old_InterfaceDeclaration_ISerializedHandle(\n use: old.ISerializedHandle);\nuse_old_InterfaceDeclaration_ISerializedHandle(\n get_current_InterfaceDeclaration_ISerializedHandle());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken.0.41.0:\n* \"VariableDeclaration_isFluidCodeDetails\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_isFluidCodeDetails():\n typeof old.isFluidCodeDetails;\ndeclare function use_current_VariableDeclaration_isFluidCodeDetails(\n use: 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.0.41.0:\n* \"VariableDeclaration_isFluidCodeDetails\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_isFluidCodeDetails():\n typeof current.isFluidCodeDetails;\ndeclare function use_old_VariableDeclaration_isFluidCodeDetails(\n use: 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.0.41.0:\n* \"VariableDeclaration_isFluidPackage\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_isFluidPackage():\n typeof old.isFluidPackage;\ndeclare function use_current_VariableDeclaration_isFluidPackage(\n use: 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.0.41.0:\n* \"VariableDeclaration_isFluidPackage\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_isFluidPackage():\n typeof current.isFluidPackage;\ndeclare function use_old_VariableDeclaration_isFluidPackage(\n use: 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": "0.41.0",
3
+ "version": "0.42.0-49742",
4
4
  "description": "Fluid object interfaces",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": "https://github.com/microsoft/FluidFramework",
@@ -25,11 +25,10 @@
25
25
  "ci:test:coverage": "echo No test for this package",
26
26
  "clean": "rimraf dist lib *.tsbuildinfo *.build.log",
27
27
  "eslint": "eslint --format stylish src",
28
- "eslint:fix": "eslint --format stylish src --fix",
28
+ "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
29
29
  "lint": "npm run eslint",
30
30
  "lint:fix": "npm run eslint:fix",
31
31
  "test": "npm run test:types",
32
- "test:types": "tsd",
33
32
  "tsc": "tsc",
34
33
  "tsc:watch": "tsc --watch",
35
34
  "tsfmt": "tsfmt --verify",
@@ -37,33 +36,31 @@
37
36
  },
38
37
  "devDependencies": {
39
38
  "@fluidframework/build-common": "^0.23.0",
40
- "@fluidframework/build-tools": "^0.2.44421",
39
+ "@fluidframework/build-tools": "^0.2.49276",
41
40
  "@fluidframework/core-interfaces-0.39.8": "npm:@fluidframework/core-interfaces@0.39.8",
42
41
  "@fluidframework/core-interfaces-0.40.0": "npm:@fluidframework/core-interfaces@0.40.0",
43
- "@fluidframework/eslint-config-fluid": "^0.24.0",
42
+ "@fluidframework/core-interfaces-0.41.0": "npm:@fluidframework/core-interfaces@0.41.0",
43
+ "@fluidframework/eslint-config-fluid": "^0.25.0",
44
44
  "@microsoft/api-extractor": "^7.16.1",
45
- "@types/node": "^12.19.0",
46
- "@typescript-eslint/eslint-plugin": "~4.14.0",
47
- "@typescript-eslint/parser": "~4.14.0",
45
+ "@rushstack/eslint-config": "^2.5.1",
46
+ "@types/node": "^14.18.0",
47
+ "@typescript-eslint/eslint-plugin": "~5.9.0",
48
+ "@typescript-eslint/parser": "~5.9.0",
48
49
  "concurrently": "^6.2.0",
49
50
  "copyfiles": "^2.1.0",
50
- "eslint": "~7.18.0",
51
+ "eslint": "~8.6.0",
52
+ "eslint-plugin-editorconfig": "~3.2.0",
51
53
  "eslint-plugin-eslint-comments": "~3.2.0",
52
- "eslint-plugin-import": "~2.22.1",
54
+ "eslint-plugin-import": "~2.25.4",
53
55
  "eslint-plugin-no-null": "~1.0.2",
54
- "eslint-plugin-prefer-arrow": "~1.2.2",
55
- "eslint-plugin-react": "~7.22.0",
56
- "eslint-plugin-unicorn": "~26.0.1",
56
+ "eslint-plugin-react": "~7.28.0",
57
+ "eslint-plugin-unicorn": "~40.0.0",
57
58
  "rimraf": "^2.6.2",
58
- "tsd": "^0.17.0",
59
59
  "typescript": "~4.1.3",
60
60
  "typescript-formatter": "7.1.0"
61
61
  },
62
- "tsd": {
63
- "directory": "test-d"
64
- },
65
62
  "typeValidation": {
66
- "version": "0.41.0",
63
+ "version": "0.42.0",
67
64
  "broken": {}
68
65
  }
69
66
  }
@@ -28,12 +28,27 @@ export interface IFluidRunnable {
28
28
  stop(reason?: string): void;
29
29
  }
30
30
 
31
+ /**
32
+ * @deprecated 0.42 - Not recommended for use and will be removed in an upcoming release.
33
+ */
31
34
  export const IFluidConfiguration: keyof IProvideFluidConfiguration = "IFluidConfiguration";
32
35
 
36
+ /**
37
+ * @deprecated 0.42 - Not recommended for use and will be removed in an upcoming release.
38
+ */
33
39
  export interface IProvideFluidConfiguration {
40
+ /**
41
+ * @deprecated 0.42 - Not recommended for use and will be removed in an upcoming release.
42
+ */
34
43
  readonly IFluidConfiguration: IFluidConfiguration;
35
44
  }
36
45
 
46
+ /**
47
+ * @deprecated 0.42 - Not recommended for use and will be removed in an upcoming release.
48
+ */
37
49
  export interface IFluidConfiguration extends IProvideFluidConfiguration {
50
+ /**
51
+ * @deprecated 0.42 - Not recommended for use and will be removed in an upcoming release.
52
+ */
38
53
  scopes: string[];
39
54
  }
@@ -4,6 +4,8 @@
4
4
  */
5
5
 
6
6
  /**
7
+ * @deprecated in favor of {@link @fluidframework/container-definitions/fluidPackage.ts#IFluidPackageEnvironment}
8
+ * to have code loading modules in same package.
7
9
  * Specifies an environment on Fluid property of a IFluidPackage
8
10
  */
9
11
  export interface IFluidPackageEnvironment {
@@ -30,6 +32,8 @@ export interface IFluidPackageEnvironment {
30
32
  }
31
33
 
32
34
  /**
35
+ * @deprecated in favor of {@link @fluidframework/container-definitions/fluidPackage.ts#IFluidPackage}
36
+ * to have code loading modules in same package.
33
37
  * Fluid-specific properties expected on a package to be loaded by the code loader.
34
38
  * While compatible with the npm package format it is not necessary that that package is an
35
39
  * npm package:
@@ -59,6 +63,8 @@ export interface IFluidPackage {
59
63
  }
60
64
 
61
65
  /**
66
+ * @deprecated in favor of {@link @fluidframework/container-definitions/fluidPackage.ts#isFluidPackage}
67
+ * to have code loading modules in same package.
62
68
  * Check if the package.json defines a Fluid package
63
69
  * @param pkg - the package json data to check if it is a Fluid package.
64
70
  */
@@ -68,6 +74,8 @@ export const isFluidPackage = (pkg: any): pkg is Readonly<IFluidPackage> =>
68
74
  && typeof pkg?.fluid === "object";
69
75
 
70
76
  /**
77
+ * @deprecated in favor of {@link @fluidframework/container-definitions/fluidPackage.ts#IFluidCodeDetailsConfig}
78
+ * to have code loading modules in same package.
71
79
  * Package manager configuration. Provides a key value mapping of config values
72
80
  */
73
81
  export interface IFluidCodeDetailsConfig {
@@ -75,6 +83,8 @@ export interface IFluidCodeDetailsConfig {
75
83
  }
76
84
 
77
85
  /**
86
+ * @deprecated in favor of {@link @fluidframework/container-definitions/fluidPackage.ts#IFluidCodeDetails}
87
+ * to have code loading modules in same package.
78
88
  * Data structure used to describe the code to load on the Fluid document
79
89
  */
80
90
  export interface IFluidCodeDetails {
@@ -90,6 +100,10 @@ export interface IFluidCodeDetails {
90
100
  readonly config?: IFluidCodeDetailsConfig;
91
101
  }
92
102
 
103
+ /**
104
+ * @deprecated in favor of {@link @fluidframework/container-definitions/fluidPackage.ts#isFluidCodeDetails}
105
+ * to have code loading modules in same package
106
+ */
93
107
  export const isFluidCodeDetails = (details: unknown): details is Readonly<IFluidCodeDetails> =>{
94
108
  const maybeCodeDetails = details as Partial<IFluidCodeDetails> | undefined;
95
109
  return typeof maybeCodeDetails === "object"
@@ -97,13 +111,24 @@ export const isFluidCodeDetails = (details: unknown): details is Readonly<IFluid
97
111
  && (maybeCodeDetails?.config === undefined || typeof maybeCodeDetails?.config === "object");
98
112
  };
99
113
 
114
+ /**
115
+ * @deprecated in favor of {@link @fluidframework/container-definitions/fluidPackage.ts#IFluidCodeDetailsComparer}
116
+ * to have code loading modules in same package.
117
+ */
100
118
  export const IFluidCodeDetailsComparer: keyof IProvideFluidCodeDetailsComparer = "IFluidCodeDetailsComparer";
101
119
 
120
+ /**
121
+ * @deprecated in favor of
122
+ * {@link @fluidframework/container-definitions/fluidPackage.ts#IProvideFluidCodeDetailsComparer}
123
+ * to have code loading modules in same package.
124
+ */
102
125
  export interface IProvideFluidCodeDetailsComparer {
103
126
  readonly IFluidCodeDetailsComparer: IFluidCodeDetailsComparer ;
104
127
  }
105
128
 
106
129
  /**
130
+ * @deprecated in favor of {@link @fluidframework/container-definitions/fluidPackage.ts#IFluidCodeDetailsComparer}
131
+ * to have code loading modules in same package.
107
132
  * Provides capability to compare Fluid code details.
108
133
  */
109
134
  export interface IFluidCodeDetailsComparer extends IProvideFluidCodeDetailsComparer {
package/src/serializer.ts CHANGED
@@ -6,6 +6,7 @@ import { IFluidHandle } from "./handles";
6
6
 
7
7
  /**
8
8
  * JSON serialized form of an IFluidHandle
9
+ * @deprecated - Moved to fluidframework/shared-object-base package
9
10
  */
10
11
  export interface ISerializedHandle {
11
12
  // Marker to indicate to JSON.parse that the object is a Fluid handle
@@ -15,12 +16,21 @@ export interface ISerializedHandle {
15
16
  url: string;
16
17
  }
17
18
 
19
+ /**
20
+ * @deprecated - Moved to fluidframework/shared-object-base package
21
+ */
18
22
  export const IFluidSerializer: keyof IProvideFluidSerializer = "IFluidSerializer";
19
23
 
24
+ /**
25
+ * @deprecated - Moved to fluidframework/shared-object-base package
26
+ */
20
27
  export interface IProvideFluidSerializer {
21
28
  readonly IFluidSerializer: IFluidSerializer;
22
29
  }
23
30
 
31
+ /**
32
+ * @deprecated - Moved to fluidframework/shared-object-base package
33
+ */
24
34
  export interface IFluidSerializer extends IProvideFluidSerializer {
25
35
  /**
26
36
  * Given a mostly-plain object that may have handle objects embedded within, will return a fully-plain object
@@ -1,103 +0,0 @@
1
- /*!
2
- * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
- * Licensed under the MIT License.
4
- */
5
- /* eslint-disable unicorn/filename-case */
6
- // eslint-disable-next-line import/no-extraneous-dependencies
7
- import {expectError} from "tsd";
8
- import { IFluidLoadable, IProvideFluidLoadable, FluidObject, FluidObjectKeys, IFluidObject } from "../dist";
9
-
10
-
11
- declare function getFluidObject(): FluidObject;
12
-
13
- declare function useFluidObject(params: FluidObject | undefined): void;
14
-
15
- declare function useProvider<T extends FluidObject>(params: FluidObject<T> | undefined): void;
16
-
17
- declare function useProviderKey<T,TKey extends FluidObjectKeys<T> = FluidObjectKeys<T>>(key: TKey): void;
18
-
19
- declare function useLoadable(params: FluidObject<IFluidLoadable> | undefined): void;
20
-
21
- // test implicit conversions between FluidObject and a FluidObject with a provides interface
22
- {
23
- const provider: FluidObject<IProvideFluidLoadable> = getFluidObject();
24
- useFluidObject(provider);
25
- useFluidObject(provider.IFluidLoadable);
26
- useProvider(provider);
27
- useProvider(provider.IFluidLoadable);
28
- useLoadable(provider);
29
- useLoadable(provider.IFluidLoadable);
30
- expectError(provider.handle);
31
- provider.IFluidLoadable?.handle;
32
- const unknown: FluidObject | undefined = provider.IFluidLoadable;
33
- useFluidObject(unknown);
34
- useProvider(unknown);
35
- useProvider<IFluidLoadable>(unknown);
36
- useLoadable(unknown);
37
- }
38
-
39
- // test implicit conversions between FluidObject and a FluidObject with a implementation interface
40
- {
41
- const foo: FluidObject<IFluidLoadable> = getFluidObject();
42
- useFluidObject(foo);
43
- useFluidObject(foo.IFluidLoadable);
44
- useProvider(foo);
45
- useProvider(foo.IFluidLoadable);
46
- useLoadable(foo);
47
- useLoadable(foo.IFluidLoadable);
48
- expectError(foo.handle);
49
- foo.IFluidLoadable?.handle;
50
- const unknown: FluidObject | undefined = foo.IFluidLoadable;
51
- useFluidObject(unknown);
52
- useProvider(unknown);
53
- useProvider<IFluidLoadable>(unknown);
54
- useLoadable(unknown);
55
- }
56
-
57
- // test getting keys
58
- {
59
- useProviderKey<IProvideFluidLoadable>(IFluidLoadable);
60
- useProviderKey<IFluidLoadable>(IFluidLoadable);
61
- const loadableKey: keyof IFluidLoadable = "handle";
62
- expectError(useProviderKey<IFluidLoadable>(loadableKey));
63
- }
64
-
65
- // test implicit conversions between FluidObject and a FluidObject with a partial provider interface
66
- {
67
-
68
- interface IProvideFoo{
69
- IFoo: IFoo;
70
- }
71
- interface IFoo extends Partial<IProvideFoo>{
72
- doFoo();
73
- }
74
-
75
- const foo: FluidObject<IFoo> = getFluidObject();
76
- useFluidObject(foo);
77
- useFluidObject(foo.IFoo);
78
- useProvider(foo);
79
- useProvider(foo.IFoo);
80
- foo.IFoo?.doFoo();
81
- const fooKey: keyof IFoo = "doFoo";
82
- expectError(useProviderKey<IFoo>(fooKey));
83
- const unknown: FluidObject | undefined = foo.IFoo;
84
- useFluidObject(unknown);
85
- useProvider(unknown);
86
- useProvider<IFoo>(unknown);
87
- useLoadable(unknown);
88
- }
89
-
90
- // test implicit conversions between FluidObject and IFluidObject for backcompat
91
- declare function getIFluidObject(): IFluidObject;
92
- {
93
- const fluidObject: FluidObject = getIFluidObject();
94
- const legacy: IFluidObject = getFluidObject();
95
- useLoadable(fluidObject)
96
- useLoadable(legacy)
97
- useFluidObject(fluidObject);
98
- useFluidObject(legacy);
99
- useProvider(legacy);
100
- useProvider(fluidObject);
101
- useProvider<IFluidLoadable>(legacy);
102
- useProvider<IFluidLoadable>(fluidObject);
103
- }