@fluidframework/datastore-definitions 2.73.0 → 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.
Files changed (2) hide show
  1. package/package.json +8 -8
  2. package/src/jsonable.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/datastore-definitions",
3
- "version": "2.73.0",
3
+ "version": "2.74.0-368706",
4
4
  "description": "Fluid data store definitions",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -49,11 +49,11 @@
49
49
  "main": "",
50
50
  "types": "lib/public.d.ts",
51
51
  "dependencies": {
52
- "@fluidframework/container-definitions": "~2.73.0",
53
- "@fluidframework/core-interfaces": "~2.73.0",
54
- "@fluidframework/driver-definitions": "~2.73.0",
55
- "@fluidframework/id-compressor": "~2.73.0",
56
- "@fluidframework/runtime-definitions": "~2.73.0"
52
+ "@fluidframework/container-definitions": "2.74.0-368706",
53
+ "@fluidframework/core-interfaces": "2.74.0-368706",
54
+ "@fluidframework/driver-definitions": "2.74.0-368706",
55
+ "@fluidframework/id-compressor": "2.74.0-368706",
56
+ "@fluidframework/runtime-definitions": "2.74.0-368706"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@arethetypeswrong/cli": "^0.17.1",
@@ -61,8 +61,8 @@
61
61
  "@fluid-tools/build-cli": "^0.60.0",
62
62
  "@fluidframework/build-common": "^2.0.3",
63
63
  "@fluidframework/build-tools": "^0.60.0",
64
- "@fluidframework/datastore-definitions-previous": "npm:@fluidframework/datastore-definitions@2.71.0",
65
- "@fluidframework/eslint-config-fluid": "~2.73.0",
64
+ "@fluidframework/datastore-definitions-previous": "npm:@fluidframework/datastore-definitions@2.73.0",
65
+ "@fluidframework/eslint-config-fluid": "2.74.0-368706",
66
66
  "@microsoft/api-extractor": "7.52.11",
67
67
  "concurrently": "^8.2.1",
68
68
  "copyfiles": "^2.4.1",
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/no-unsafe-function-type, @typescript-eslint/ban-types
103
+ : // eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
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