@fluidframework/runtime-definitions 2.74.0-365691 → 2.74.0-368706

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.
@@ -1 +1 @@
1
- {"version":3,"file":"containerExtensionProvider.d.ts","sourceRoot":"","sources":["../src/containerExtensionProvider.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,8BAA8B,CAAC;AAEpF;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAC7C;;OAEG;IACH,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B;;OAEG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,QAAQ,CAAC,YAAY,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;CAC3C;AAED;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAC7C,aAAa,EAAE,6BAA6B,CAAC;IAC7C,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,OAAO,CAAC;CACnB;AAED;;;;;;;GAOG;AACH,MAAM,WAAW,8BAA8B;IAC9C;;OAEG;IACH,QAAQ,CAAC,gBAAgB,EAAE,+BAA+B,CAAC;IAE3D;;OAEG;IACH,QAAQ,CAAC,oBAAoB,EAAE,6BAA6B,CAAC;IAE7D;;;;;OAKG;IACH,yBAAyB,CACxB,kBAAkB,EAAE,6BAA6B,GAC/C,QAAQ,CAAC,6BAA6B,CAAC,CAAC;CAC3C;AAGD;;;;;;;;;;;;;;;GAeG;AACH,MAAM,MAAM,oBAAoB,GAAG,GAAG,MAAM,IAAI,MAAM,EAAE,CAAC;AAGzD;;;GAGG;AACH,MAAM,WAAW,0BAA0B;IAC1C;;;;;;;OAOG;IACH,YAAY,CAAC,UAAU,EAAE,WAAW,SAAS,OAAO,EAAE,GAAG,EAAE,EAC1D,EAAE,EAAE,oBAAoB,EACxB,YAAY,EAAE,8BAA8B,EAC5C,GAAG,OAAO,EAAE,WAAW,GACrB,UAAU,CAAC;CACd"}
1
+ {"version":3,"file":"containerExtensionProvider.d.ts","sourceRoot":"","sources":["../src/containerExtensionProvider.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,8BAA8B,CAAC;AAEpF;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAC7C;;OAEG;IACH,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B;;OAEG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,QAAQ,CAAC,YAAY,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;CAC3C;AAED;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAC7C,aAAa,EAAE,6BAA6B,CAAC;IAC7C,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,OAAO,CAAC;CACnB;AAED;;;;;;;GAOG;AACH,MAAM,WAAW,8BAA8B;IAC9C;;OAEG;IACH,QAAQ,CAAC,gBAAgB,EAAE,+BAA+B,CAAC;IAE3D;;OAEG;IACH,QAAQ,CAAC,oBAAoB,EAAE,6BAA6B,CAAC;IAE7D;;;;;OAKG;IACH,yBAAyB,CACxB,kBAAkB,EAAE,6BAA6B,GAC/C,QAAQ,CAAC,6BAA6B,CAAC,CAAC;CAC3C;AAED;;;;;;;;;;;;;;;GAeG;AACH,MAAM,MAAM,oBAAoB,GAAG,GAAG,MAAM,IAAI,MAAM,EAAE,CAAC;AAEzD;;;GAGG;AACH,MAAM,WAAW,0BAA0B;IAC1C;;;;;;;OAOG;IACH,YAAY,CAAC,UAAU,EAAE,WAAW,SAAS,OAAO,EAAE,GAAG,EAAE,EAC1D,EAAE,EAAE,oBAAoB,EACxB,YAAY,EAAE,8BAA8B,EAC5C,GAAG,OAAO,EAAE,WAAW,GACrB,UAAU,CAAC;CACd"}
@@ -1 +1 @@
1
- {"version":3,"file":"containerExtensionProvider.js","sourceRoot":"","sources":["../src/containerExtensionProvider.ts"],"names":[],"mappings":";AAAA;;;GAGG","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport type { ILayerCompatSupportRequirements } from \"@fluid-internal/client-utils\";\n\n/**\n * Identifying characteristics of a registrant for checking runtime compatibility.\n *\n * @internal\n */\nexport interface ExtensionCompatibilityDetails {\n\t/**\n\t * Compatibility generation.\n\t */\n\treadonly generation: number;\n\t/**\n\t * Semver string representing the version of the registrant.\n\t */\n\treadonly version: string;\n\t/**\n\t * Set of capabilities supported by the registrant.\n\t */\n\treadonly capabilities: ReadonlySet<string>;\n}\n\n/**\n * Information about an instantiation of an extension.\n *\n * @internal\n */\nexport interface UnknownExtensionInstantiation {\n\tcompatibility: ExtensionCompatibilityDetails;\n\tinterface: unknown;\n\textension: unknown;\n}\n\n/**\n * Description of expectations for an extension instance.\n *\n * Provided to {@link ContainerExtensionProvider.getExtension} and used to\n * validate existing extension is runtime compatible.\n *\n * @internal\n */\nexport interface ContainerExtensionExpectations {\n\t/**\n\t * Requirements imposed on the host/container for the extension.\n\t */\n\treadonly hostRequirements: ILayerCompatSupportRequirements;\n\n\t/**\n\t * Expectations for an existing extension instance.\n\t */\n\treadonly instanceExpectations: ExtensionCompatibilityDetails;\n\n\t/**\n\t * Called when an existing extension instantiation appears unable to meet\n\t * expectations. Allows for custom resolution with the prior instantiation\n\t * including more sophisticated acceptance logic.\n\t * @param priorInstantiation - The prior instantiation of the extension.\n\t */\n\tresolvePriorInstantiation(\n\t\tpriorInstantiation: UnknownExtensionInstantiation,\n\t): Readonly<UnknownExtensionInstantiation>;\n}\n\n/* eslint-disable @fluid-internal/fluid/no-hyphen-after-jsdoc-tag -- false positive AB#50920 */\n/**\n * Unique identifier for extension\n *\n * @remarks\n * A string known to all clients working with a certain ContainerExtension and unique\n * among ContainerExtensions. No `/` may be used in the string. Recommend using\n * concatenation of: type of unique identifier, `:` (required), and unique identifier.\n *\n * @example Examples\n * ```typescript\n * \"guid:g0fl001d-1415-5000-c00l-g0fa54g0b1g1\"\n * \"name:@foo-scope_bar:v1\"\n * ```\n *\n * @internal\n */\nexport type ContainerExtensionId = `${string}:${string}`;\n/* eslint-enable @fluid-internal/fluid/no-hyphen-after-jsdoc-tag */\n\n/**\n * @sealed\n * @internal\n */\nexport interface ContainerExtensionProvider {\n\t/**\n\t * Gets an extension from store.\n\t *\n\t * @param id - Identifier for the requested extension\n\t * @param expectations - Extension compatibility requirements\n\t * @param context - Custom use context for extension\n\t * @returns The extension\n\t */\n\tgetExtension<TInterface, TUseContext extends unknown[] = []>(\n\t\tid: ContainerExtensionId,\n\t\texpectations: ContainerExtensionExpectations,\n\t\t...context: TUseContext\n\t): TInterface;\n}\n"]}
1
+ {"version":3,"file":"containerExtensionProvider.js","sourceRoot":"","sources":["../src/containerExtensionProvider.ts"],"names":[],"mappings":";AAAA;;;GAGG","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport type { ILayerCompatSupportRequirements } from \"@fluid-internal/client-utils\";\n\n/**\n * Identifying characteristics of a registrant for checking runtime compatibility.\n *\n * @internal\n */\nexport interface ExtensionCompatibilityDetails {\n\t/**\n\t * Compatibility generation.\n\t */\n\treadonly generation: number;\n\t/**\n\t * Semver string representing the version of the registrant.\n\t */\n\treadonly version: string;\n\t/**\n\t * Set of capabilities supported by the registrant.\n\t */\n\treadonly capabilities: ReadonlySet<string>;\n}\n\n/**\n * Information about an instantiation of an extension.\n *\n * @internal\n */\nexport interface UnknownExtensionInstantiation {\n\tcompatibility: ExtensionCompatibilityDetails;\n\tinterface: unknown;\n\textension: unknown;\n}\n\n/**\n * Description of expectations for an extension instance.\n *\n * Provided to {@link ContainerExtensionProvider.getExtension} and used to\n * validate existing extension is runtime compatible.\n *\n * @internal\n */\nexport interface ContainerExtensionExpectations {\n\t/**\n\t * Requirements imposed on the host/container for the extension.\n\t */\n\treadonly hostRequirements: ILayerCompatSupportRequirements;\n\n\t/**\n\t * Expectations for an existing extension instance.\n\t */\n\treadonly instanceExpectations: ExtensionCompatibilityDetails;\n\n\t/**\n\t * Called when an existing extension instantiation appears unable to meet\n\t * expectations. Allows for custom resolution with the prior instantiation\n\t * including more sophisticated acceptance logic.\n\t * @param priorInstantiation - The prior instantiation of the extension.\n\t */\n\tresolvePriorInstantiation(\n\t\tpriorInstantiation: UnknownExtensionInstantiation,\n\t): Readonly<UnknownExtensionInstantiation>;\n}\n\n/**\n * Unique identifier for extension\n *\n * @remarks\n * A string known to all clients working with a certain ContainerExtension and unique\n * among ContainerExtensions. No `/` may be used in the string. Recommend using\n * concatenation of: type of unique identifier, `:` (required), and unique identifier.\n *\n * @example Examples\n * ```typescript\n * \"guid:g0fl001d-1415-5000-c00l-g0fa54g0b1g1\"\n * \"name:@foo-scope_bar:v1\"\n * ```\n *\n * @internal\n */\nexport type ContainerExtensionId = `${string}:${string}`;\n\n/**\n * @sealed\n * @internal\n */\nexport interface ContainerExtensionProvider {\n\t/**\n\t * Gets an extension from store.\n\t *\n\t * @param id - Identifier for the requested extension\n\t * @param expectations - Extension compatibility requirements\n\t * @param context - Custom use context for extension\n\t * @returns The extension\n\t */\n\tgetExtension<TInterface, TUseContext extends unknown[] = []>(\n\t\tid: ContainerExtensionId,\n\t\texpectations: ContainerExtensionExpectations,\n\t\t...context: TUseContext\n\t): TInterface;\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"containerExtensionProvider.d.ts","sourceRoot":"","sources":["../src/containerExtensionProvider.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,8BAA8B,CAAC;AAEpF;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAC7C;;OAEG;IACH,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B;;OAEG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,QAAQ,CAAC,YAAY,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;CAC3C;AAED;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAC7C,aAAa,EAAE,6BAA6B,CAAC;IAC7C,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,OAAO,CAAC;CACnB;AAED;;;;;;;GAOG;AACH,MAAM,WAAW,8BAA8B;IAC9C;;OAEG;IACH,QAAQ,CAAC,gBAAgB,EAAE,+BAA+B,CAAC;IAE3D;;OAEG;IACH,QAAQ,CAAC,oBAAoB,EAAE,6BAA6B,CAAC;IAE7D;;;;;OAKG;IACH,yBAAyB,CACxB,kBAAkB,EAAE,6BAA6B,GAC/C,QAAQ,CAAC,6BAA6B,CAAC,CAAC;CAC3C;AAGD;;;;;;;;;;;;;;;GAeG;AACH,MAAM,MAAM,oBAAoB,GAAG,GAAG,MAAM,IAAI,MAAM,EAAE,CAAC;AAGzD;;;GAGG;AACH,MAAM,WAAW,0BAA0B;IAC1C;;;;;;;OAOG;IACH,YAAY,CAAC,UAAU,EAAE,WAAW,SAAS,OAAO,EAAE,GAAG,EAAE,EAC1D,EAAE,EAAE,oBAAoB,EACxB,YAAY,EAAE,8BAA8B,EAC5C,GAAG,OAAO,EAAE,WAAW,GACrB,UAAU,CAAC;CACd"}
1
+ {"version":3,"file":"containerExtensionProvider.d.ts","sourceRoot":"","sources":["../src/containerExtensionProvider.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,8BAA8B,CAAC;AAEpF;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAC7C;;OAEG;IACH,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B;;OAEG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,QAAQ,CAAC,YAAY,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;CAC3C;AAED;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAC7C,aAAa,EAAE,6BAA6B,CAAC;IAC7C,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,OAAO,CAAC;CACnB;AAED;;;;;;;GAOG;AACH,MAAM,WAAW,8BAA8B;IAC9C;;OAEG;IACH,QAAQ,CAAC,gBAAgB,EAAE,+BAA+B,CAAC;IAE3D;;OAEG;IACH,QAAQ,CAAC,oBAAoB,EAAE,6BAA6B,CAAC;IAE7D;;;;;OAKG;IACH,yBAAyB,CACxB,kBAAkB,EAAE,6BAA6B,GAC/C,QAAQ,CAAC,6BAA6B,CAAC,CAAC;CAC3C;AAED;;;;;;;;;;;;;;;GAeG;AACH,MAAM,MAAM,oBAAoB,GAAG,GAAG,MAAM,IAAI,MAAM,EAAE,CAAC;AAEzD;;;GAGG;AACH,MAAM,WAAW,0BAA0B;IAC1C;;;;;;;OAOG;IACH,YAAY,CAAC,UAAU,EAAE,WAAW,SAAS,OAAO,EAAE,GAAG,EAAE,EAC1D,EAAE,EAAE,oBAAoB,EACxB,YAAY,EAAE,8BAA8B,EAC5C,GAAG,OAAO,EAAE,WAAW,GACrB,UAAU,CAAC;CACd"}
@@ -1 +1 @@
1
- {"version":3,"file":"containerExtensionProvider.js","sourceRoot":"","sources":["../src/containerExtensionProvider.ts"],"names":[],"mappings":"AAAA;;;GAGG","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport type { ILayerCompatSupportRequirements } from \"@fluid-internal/client-utils\";\n\n/**\n * Identifying characteristics of a registrant for checking runtime compatibility.\n *\n * @internal\n */\nexport interface ExtensionCompatibilityDetails {\n\t/**\n\t * Compatibility generation.\n\t */\n\treadonly generation: number;\n\t/**\n\t * Semver string representing the version of the registrant.\n\t */\n\treadonly version: string;\n\t/**\n\t * Set of capabilities supported by the registrant.\n\t */\n\treadonly capabilities: ReadonlySet<string>;\n}\n\n/**\n * Information about an instantiation of an extension.\n *\n * @internal\n */\nexport interface UnknownExtensionInstantiation {\n\tcompatibility: ExtensionCompatibilityDetails;\n\tinterface: unknown;\n\textension: unknown;\n}\n\n/**\n * Description of expectations for an extension instance.\n *\n * Provided to {@link ContainerExtensionProvider.getExtension} and used to\n * validate existing extension is runtime compatible.\n *\n * @internal\n */\nexport interface ContainerExtensionExpectations {\n\t/**\n\t * Requirements imposed on the host/container for the extension.\n\t */\n\treadonly hostRequirements: ILayerCompatSupportRequirements;\n\n\t/**\n\t * Expectations for an existing extension instance.\n\t */\n\treadonly instanceExpectations: ExtensionCompatibilityDetails;\n\n\t/**\n\t * Called when an existing extension instantiation appears unable to meet\n\t * expectations. Allows for custom resolution with the prior instantiation\n\t * including more sophisticated acceptance logic.\n\t * @param priorInstantiation - The prior instantiation of the extension.\n\t */\n\tresolvePriorInstantiation(\n\t\tpriorInstantiation: UnknownExtensionInstantiation,\n\t): Readonly<UnknownExtensionInstantiation>;\n}\n\n/* eslint-disable @fluid-internal/fluid/no-hyphen-after-jsdoc-tag -- false positive AB#50920 */\n/**\n * Unique identifier for extension\n *\n * @remarks\n * A string known to all clients working with a certain ContainerExtension and unique\n * among ContainerExtensions. No `/` may be used in the string. Recommend using\n * concatenation of: type of unique identifier, `:` (required), and unique identifier.\n *\n * @example Examples\n * ```typescript\n * \"guid:g0fl001d-1415-5000-c00l-g0fa54g0b1g1\"\n * \"name:@foo-scope_bar:v1\"\n * ```\n *\n * @internal\n */\nexport type ContainerExtensionId = `${string}:${string}`;\n/* eslint-enable @fluid-internal/fluid/no-hyphen-after-jsdoc-tag */\n\n/**\n * @sealed\n * @internal\n */\nexport interface ContainerExtensionProvider {\n\t/**\n\t * Gets an extension from store.\n\t *\n\t * @param id - Identifier for the requested extension\n\t * @param expectations - Extension compatibility requirements\n\t * @param context - Custom use context for extension\n\t * @returns The extension\n\t */\n\tgetExtension<TInterface, TUseContext extends unknown[] = []>(\n\t\tid: ContainerExtensionId,\n\t\texpectations: ContainerExtensionExpectations,\n\t\t...context: TUseContext\n\t): TInterface;\n}\n"]}
1
+ {"version":3,"file":"containerExtensionProvider.js","sourceRoot":"","sources":["../src/containerExtensionProvider.ts"],"names":[],"mappings":"AAAA;;;GAGG","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport type { ILayerCompatSupportRequirements } from \"@fluid-internal/client-utils\";\n\n/**\n * Identifying characteristics of a registrant for checking runtime compatibility.\n *\n * @internal\n */\nexport interface ExtensionCompatibilityDetails {\n\t/**\n\t * Compatibility generation.\n\t */\n\treadonly generation: number;\n\t/**\n\t * Semver string representing the version of the registrant.\n\t */\n\treadonly version: string;\n\t/**\n\t * Set of capabilities supported by the registrant.\n\t */\n\treadonly capabilities: ReadonlySet<string>;\n}\n\n/**\n * Information about an instantiation of an extension.\n *\n * @internal\n */\nexport interface UnknownExtensionInstantiation {\n\tcompatibility: ExtensionCompatibilityDetails;\n\tinterface: unknown;\n\textension: unknown;\n}\n\n/**\n * Description of expectations for an extension instance.\n *\n * Provided to {@link ContainerExtensionProvider.getExtension} and used to\n * validate existing extension is runtime compatible.\n *\n * @internal\n */\nexport interface ContainerExtensionExpectations {\n\t/**\n\t * Requirements imposed on the host/container for the extension.\n\t */\n\treadonly hostRequirements: ILayerCompatSupportRequirements;\n\n\t/**\n\t * Expectations for an existing extension instance.\n\t */\n\treadonly instanceExpectations: ExtensionCompatibilityDetails;\n\n\t/**\n\t * Called when an existing extension instantiation appears unable to meet\n\t * expectations. Allows for custom resolution with the prior instantiation\n\t * including more sophisticated acceptance logic.\n\t * @param priorInstantiation - The prior instantiation of the extension.\n\t */\n\tresolvePriorInstantiation(\n\t\tpriorInstantiation: UnknownExtensionInstantiation,\n\t): Readonly<UnknownExtensionInstantiation>;\n}\n\n/**\n * Unique identifier for extension\n *\n * @remarks\n * A string known to all clients working with a certain ContainerExtension and unique\n * among ContainerExtensions. No `/` may be used in the string. Recommend using\n * concatenation of: type of unique identifier, `:` (required), and unique identifier.\n *\n * @example Examples\n * ```typescript\n * \"guid:g0fl001d-1415-5000-c00l-g0fa54g0b1g1\"\n * \"name:@foo-scope_bar:v1\"\n * ```\n *\n * @internal\n */\nexport type ContainerExtensionId = `${string}:${string}`;\n\n/**\n * @sealed\n * @internal\n */\nexport interface ContainerExtensionProvider {\n\t/**\n\t * Gets an extension from store.\n\t *\n\t * @param id - Identifier for the requested extension\n\t * @param expectations - Extension compatibility requirements\n\t * @param context - Custom use context for extension\n\t * @returns The extension\n\t */\n\tgetExtension<TInterface, TUseContext extends unknown[] = []>(\n\t\tid: ContainerExtensionId,\n\t\texpectations: ContainerExtensionExpectations,\n\t\t...context: TUseContext\n\t): TInterface;\n}\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/runtime-definitions",
3
- "version": "2.74.0-365691",
3
+ "version": "2.74.0-368706",
4
4
  "description": "Fluid Runtime definitions",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -57,12 +57,12 @@
57
57
  "main": "lib/index.js",
58
58
  "types": "lib/public.d.ts",
59
59
  "dependencies": {
60
- "@fluid-internal/client-utils": "2.74.0-365691",
61
- "@fluidframework/container-definitions": "2.74.0-365691",
62
- "@fluidframework/core-interfaces": "2.74.0-365691",
63
- "@fluidframework/driver-definitions": "2.74.0-365691",
64
- "@fluidframework/id-compressor": "2.74.0-365691",
65
- "@fluidframework/telemetry-utils": "2.74.0-365691"
60
+ "@fluid-internal/client-utils": "2.74.0-368706",
61
+ "@fluidframework/container-definitions": "2.74.0-368706",
62
+ "@fluidframework/core-interfaces": "2.74.0-368706",
63
+ "@fluidframework/driver-definitions": "2.74.0-368706",
64
+ "@fluidframework/id-compressor": "2.74.0-368706",
65
+ "@fluidframework/telemetry-utils": "2.74.0-368706"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@arethetypeswrong/cli": "^0.17.1",
@@ -70,7 +70,7 @@
70
70
  "@fluid-tools/build-cli": "^0.60.0",
71
71
  "@fluidframework/build-common": "^2.0.3",
72
72
  "@fluidframework/build-tools": "^0.60.0",
73
- "@fluidframework/eslint-config-fluid": "2.74.0-365691",
73
+ "@fluidframework/eslint-config-fluid": "2.74.0-368706",
74
74
  "@fluidframework/runtime-definitions-previous": "npm:@fluidframework/runtime-definitions@2.73.0",
75
75
  "@microsoft/api-extractor": "7.52.11",
76
76
  "concurrently": "^8.2.1",
@@ -66,7 +66,6 @@ export interface ContainerExtensionExpectations {
66
66
  ): Readonly<UnknownExtensionInstantiation>;
67
67
  }
68
68
 
69
- /* eslint-disable @fluid-internal/fluid/no-hyphen-after-jsdoc-tag -- false positive AB#50920 */
70
69
  /**
71
70
  * Unique identifier for extension
72
71
  *
@@ -84,7 +83,6 @@ export interface ContainerExtensionExpectations {
84
83
  * @internal
85
84
  */
86
85
  export type ContainerExtensionId = `${string}:${string}`;
87
- /* eslint-enable @fluid-internal/fluid/no-hyphen-after-jsdoc-tag */
88
86
 
89
87
  /**
90
88
  * @sealed