@fluidframework/datastore-definitions 2.70.0-360753 → 2.70.0-361248

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.
@@ -128,7 +128,7 @@ export interface IFluidDataStoreRuntime extends IEventProvider<IFluidDataStoreRu
128
128
  }
129
129
  /**
130
130
  * @experimental
131
- * @deprecated - These APIs are unstable, and can be changed at will. They should only be used with direct agreement with the Fluid Framework.
131
+ * @deprecated These APIs are unstable, and can be changed at will. They should only be used with direct agreement with the Fluid Framework.
132
132
  * @legacy @beta
133
133
  * @sealed
134
134
  */
@@ -128,7 +128,7 @@ export interface IFluidDataStoreRuntime extends IEventProvider<IFluidDataStoreRu
128
128
  }
129
129
  /**
130
130
  * @experimental
131
- * @deprecated - These APIs are unstable, and can be changed at will. They should only be used with direct agreement with the Fluid Framework.
131
+ * @deprecated These APIs are unstable, and can be changed at will. They should only be used with direct agreement with the Fluid Framework.
132
132
  * @legacy @beta
133
133
  * @sealed
134
134
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/datastore-definitions",
3
- "version": "2.70.0-360753",
3
+ "version": "2.70.0-361248",
4
4
  "description": "Fluid data store definitions",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -41,11 +41,11 @@
41
41
  "main": "",
42
42
  "types": "lib/public.d.ts",
43
43
  "dependencies": {
44
- "@fluidframework/container-definitions": "2.70.0-360753",
45
- "@fluidframework/core-interfaces": "2.70.0-360753",
46
- "@fluidframework/driver-definitions": "2.70.0-360753",
47
- "@fluidframework/id-compressor": "2.70.0-360753",
48
- "@fluidframework/runtime-definitions": "2.70.0-360753"
44
+ "@fluidframework/container-definitions": "2.70.0-361248",
45
+ "@fluidframework/core-interfaces": "2.70.0-361248",
46
+ "@fluidframework/driver-definitions": "2.70.0-361248",
47
+ "@fluidframework/id-compressor": "2.70.0-361248",
48
+ "@fluidframework/runtime-definitions": "2.70.0-361248"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@arethetypeswrong/cli": "^0.17.1",
@@ -54,11 +54,11 @@
54
54
  "@fluidframework/build-common": "^2.0.3",
55
55
  "@fluidframework/build-tools": "^0.58.3",
56
56
  "@fluidframework/datastore-definitions-previous": "npm:@fluidframework/datastore-definitions@2.63.0",
57
- "@fluidframework/eslint-config-fluid": "^6.0.0",
57
+ "@fluidframework/eslint-config-fluid": "^6.1.0",
58
58
  "@microsoft/api-extractor": "7.52.11",
59
59
  "concurrently": "^8.2.1",
60
60
  "copyfiles": "^2.4.1",
61
- "eslint": "~8.55.0",
61
+ "eslint": "~8.57.1",
62
62
  "rimraf": "^4.4.0",
63
63
  "typescript": "~5.4.5"
64
64
  },
@@ -178,7 +178,7 @@ export interface IFluidDataStoreRuntime
178
178
 
179
179
  /**
180
180
  * @experimental
181
- * @deprecated - These APIs are unstable, and can be changed at will. They should only be used with direct agreement with the Fluid Framework.
181
+ * @deprecated These APIs are unstable, and can be changed at will. They should only be used with direct agreement with the Fluid Framework.
182
182
  * @legacy @beta
183
183
  * @sealed
184
184
  */
package/src/jsonable.ts CHANGED
@@ -100,7 +100,7 @@ export type Jsonable<T, TReplaced = never> = /* test for 'any' */ boolean extend
100
100
  | string
101
101
  | TReplaced
102
102
  ? /* primitive types => */ T
103
- : // eslint-disable-next-line @typescript-eslint/ban-types
103
+ : // eslint-disable-next-line @typescript-eslint/no-unsafe-function-type, @typescript-eslint/ban-types
104
104
  /* test for not a function */ Extract<T, Function> extends never
105
105
  ? /* not a function => => test for object */ T extends object
106
106
  ? /* object => test for array */ T extends (infer U)[] // prefer ArrayLike test to catch non-array array-like types