@fluid-experimental/oldest-client-observer 2.0.0-rc.5.0.0 → 2.1.0-274160

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.
@@ -0,0 +1,4 @@
1
+ {
2
+ "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3
+ "extends": "<projectFolder>/../../../common/build/build-common/api-extractor-base.esm.legacy.json"
4
+ }
@@ -4,12 +4,6 @@
4
4
 
5
5
  ```ts
6
6
 
7
- import { AttachState } from '@fluidframework/container-definitions';
8
- import { IEvent } from '@fluidframework/core-interfaces';
9
- import { IEventProvider } from '@fluidframework/core-interfaces';
10
- import { IQuorumClients } from '@fluidframework/driver-definitions';
11
- import { TypedEventEmitter } from '@fluid-internal/client-utils';
12
-
13
7
  // @alpha
14
8
  export interface IOldestClientObservable extends IEventProvider<IOldestClientObservableEvents> {
15
9
  // (undocumented)
@@ -4,12 +4,6 @@
4
4
 
5
5
  ```ts
6
6
 
7
- import { AttachState } from '@fluidframework/container-definitions';
8
- import { IEvent } from '@fluidframework/core-interfaces';
9
- import { IEventProvider } from '@fluidframework/core-interfaces';
10
- import { IQuorumClients } from '@fluidframework/driver-definitions';
11
- import { TypedEventEmitter } from '@fluid-internal/client-utils';
12
-
13
7
  // (No @packageDocumentation comment for this package)
14
8
 
15
9
  ```
@@ -4,12 +4,6 @@
4
4
 
5
5
  ```ts
6
6
 
7
- import { AttachState } from '@fluidframework/container-definitions';
8
- import { IEvent } from '@fluidframework/core-interfaces';
9
- import { IEventProvider } from '@fluidframework/core-interfaces';
10
- import { IQuorumClients } from '@fluidframework/driver-definitions';
11
- import { TypedEventEmitter } from '@fluid-internal/client-utils';
12
-
13
7
  // (No @packageDocumentation comment for this package)
14
8
 
15
9
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-experimental/oldest-client-observer",
3
- "version": "2.0.0-rc.5.0.0",
3
+ "version": "2.1.0-274160",
4
4
  "description": "Data object to determine if the local client is the oldest amongst connected clients",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -67,16 +67,16 @@
67
67
  "temp-directory": "nyc/.nyc_output"
68
68
  },
69
69
  "dependencies": {
70
- "@fluid-internal/client-utils": ">=2.0.0-rc.5.0.0 <2.0.0-rc.5.1.0",
71
- "@fluidframework/container-definitions": ">=2.0.0-rc.5.0.0 <2.0.0-rc.5.1.0",
72
- "@fluidframework/core-interfaces": ">=2.0.0-rc.5.0.0 <2.0.0-rc.5.1.0",
73
- "@fluidframework/core-utils": ">=2.0.0-rc.5.0.0 <2.0.0-rc.5.1.0",
74
- "@fluidframework/driver-definitions": ">=2.0.0-rc.5.0.0 <2.0.0-rc.5.1.0"
70
+ "@fluid-internal/client-utils": "2.1.0-274160",
71
+ "@fluidframework/container-definitions": "2.1.0-274160",
72
+ "@fluidframework/core-interfaces": "2.1.0-274160",
73
+ "@fluidframework/core-utils": "2.1.0-274160",
74
+ "@fluidframework/driver-definitions": "2.1.0-274160"
75
75
  },
76
76
  "devDependencies": {
77
77
  "@arethetypeswrong/cli": "^0.15.2",
78
78
  "@biomejs/biome": "^1.7.3",
79
- "@fluid-private/test-dds-utils": ">=2.0.0-rc.5.0.0 <2.0.0-rc.5.1.0",
79
+ "@fluid-private/test-dds-utils": "2.1.0-274160",
80
80
  "@fluid-tools/build-cli": "^0.39.0",
81
81
  "@fluidframework/build-common": "^2.0.3",
82
82
  "@fluidframework/build-tools": "^0.39.0",
@@ -109,7 +109,9 @@
109
109
  "build": "fluid-build . --task build",
110
110
  "build:commonjs": "fluid-build . --task commonjs",
111
111
  "build:compile": "fluid-build . --task compile",
112
- "build:docs": "api-extractor run --local",
112
+ "build:docs": "concurrently \"npm:build:docs:*\"",
113
+ "build:docs:current": "api-extractor run --local",
114
+ "build:docs:legacy": "api-extractor run --local --config api-extractor/api-extractor.legacy.json",
113
115
  "build:esnext": "tsc --project ./tsconfig.json",
114
116
  "check:are-the-types-wrong": "attw --pack .",
115
117
  "check:biome": "biome check . --formatter-enabled=true",
@@ -121,7 +123,9 @@
121
123
  "check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
122
124
  "check:format": "npm run check:biome",
123
125
  "check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
124
- "ci:build:docs": "api-extractor run",
126
+ "ci:build:docs": "concurrently \"npm:ci:build:docs:*\"",
127
+ "ci:build:docs:current": "api-extractor run",
128
+ "ci:build:docs:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
125
129
  "clean": "rimraf --glob dist lib \"*.d.ts\" \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
126
130
  "eslint": "eslint --format stylish src",
127
131
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
@@ -131,7 +135,7 @@
131
135
  "lint": "fluid-build . --task lint",
132
136
  "lint:fix": "fluid-build . --task eslint:fix --task format",
133
137
  "tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
134
- "typetests:gen": "flub generate typetests --dir . -v --publicFallback",
138
+ "typetests:gen": "flub generate typetests --dir . -v",
135
139
  "typetests:prepare": "flub typetests --dir . --reset --previous --normalize"
136
140
  }
137
141
  }