@fluidframework/request-handler 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,11 +4,6 @@
4
4
 
5
5
  ```ts
6
6
 
7
- import type { IContainerRuntime } from '@fluidframework/container-runtime-definitions/internal';
8
- import type { IRequest } from '@fluidframework/core-interfaces';
9
- import type { IResponse } from '@fluidframework/core-interfaces';
10
- import type { RequestParser } from '@fluidframework/runtime-utils/internal';
11
-
12
7
  // @alpha @deprecated
13
8
  export type RuntimeRequestHandler = (request: RequestParser, runtime: IContainerRuntime) => Promise<IResponse | undefined>;
14
9
 
@@ -4,11 +4,6 @@
4
4
 
5
5
  ```ts
6
6
 
7
- import type { IContainerRuntime } from '@fluidframework/container-runtime-definitions/internal';
8
- import type { IRequest } from '@fluidframework/core-interfaces';
9
- import type { IResponse } from '@fluidframework/core-interfaces';
10
- import type { RequestParser } from '@fluidframework/runtime-utils/internal';
11
-
12
7
  // (No @packageDocumentation comment for this package)
13
8
 
14
9
  ```
@@ -4,11 +4,6 @@
4
4
 
5
5
  ```ts
6
6
 
7
- import type { IContainerRuntime } from '@fluidframework/container-runtime-definitions/internal';
8
- import type { IRequest } from '@fluidframework/core-interfaces';
9
- import type { IResponse } from '@fluidframework/core-interfaces';
10
- import type { RequestParser } from '@fluidframework/runtime-utils/internal';
11
-
12
7
  // (No @packageDocumentation comment for this package)
13
8
 
14
9
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/request-handler",
3
- "version": "2.0.0-rc.5.0.0",
3
+ "version": "2.1.0-274160",
4
4
  "description": "A simple request handling library for Fluid Framework",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -67,21 +67,21 @@
67
67
  "temp-directory": "nyc/.nyc_output"
68
68
  },
69
69
  "dependencies": {
70
- "@fluidframework/container-runtime-definitions": ">=2.0.0-rc.5.0.0 <2.0.0-rc.5.1.0",
71
- "@fluidframework/core-interfaces": ">=2.0.0-rc.5.0.0 <2.0.0-rc.5.1.0",
72
- "@fluidframework/core-utils": ">=2.0.0-rc.5.0.0 <2.0.0-rc.5.1.0",
73
- "@fluidframework/runtime-definitions": ">=2.0.0-rc.5.0.0 <2.0.0-rc.5.1.0",
74
- "@fluidframework/runtime-utils": ">=2.0.0-rc.5.0.0 <2.0.0-rc.5.1.0"
70
+ "@fluidframework/container-runtime-definitions": "2.1.0-274160",
71
+ "@fluidframework/core-interfaces": "2.1.0-274160",
72
+ "@fluidframework/core-utils": "2.1.0-274160",
73
+ "@fluidframework/runtime-definitions": "2.1.0-274160",
74
+ "@fluidframework/runtime-utils": "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-internal/mocha-test-setup": ">=2.0.0-rc.5.0.0 <2.0.0-rc.5.1.0",
79
+ "@fluid-internal/mocha-test-setup": "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",
83
83
  "@fluidframework/eslint-config-fluid": "^5.3.0",
84
- "@fluidframework/request-handler-previous": "npm:@fluidframework/request-handler@2.0.0-rc.4.0.0",
84
+ "@fluidframework/request-handler-previous": "npm:@fluidframework/request-handler@2.0.0-rc.5.0.0",
85
85
  "@microsoft/api-extractor": "^7.45.1",
86
86
  "@types/diff": "^3.5.1",
87
87
  "@types/mocha": "^9.1.1",
@@ -110,7 +110,9 @@
110
110
  "build": "fluid-build . --task build",
111
111
  "build:commonjs": "fluid-build . --task commonjs",
112
112
  "build:compile": "fluid-build . --task compile",
113
- "build:docs": "api-extractor run --local",
113
+ "build:docs": "concurrently \"npm:build:docs:*\"",
114
+ "build:docs:current": "api-extractor run --local",
115
+ "build:docs:legacy": "api-extractor run --local --config api-extractor/api-extractor.legacy.json",
114
116
  "build:esnext": "tsc --project ./tsconfig.json",
115
117
  "build:test": "npm run build:test:esm && npm run build:test:cjs",
116
118
  "build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
@@ -125,7 +127,9 @@
125
127
  "check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
126
128
  "check:format": "npm run check:biome",
127
129
  "check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
128
- "ci:build:docs": "api-extractor run",
130
+ "ci:build:docs": "concurrently \"npm:ci:build:docs:*\"",
131
+ "ci:build:docs:current": "api-extractor run",
132
+ "ci:build:docs:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
129
133
  "clean": "rimraf --glob dist lib \"*.d.ts\" \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
130
134
  "eslint": "eslint --format stylish src",
131
135
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
@@ -141,7 +145,7 @@
141
145
  "test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\" --exit",
142
146
  "test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
143
147
  "tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
144
- "typetests:gen": "flub generate typetests --dir . -v --publicFallback",
148
+ "typetests:gen": "flub generate typetests --dir . -v",
145
149
  "typetests:prepare": "flub typetests --dir . --reset --previous --normalize"
146
150
  }
147
151
  }