@fluidframework/azure-service-utils 2.0.0-rc.5.0.1 → 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,9 +4,6 @@
4
4
 
5
5
  ```ts
6
6
 
7
- import { IUser } from '@fluidframework/driver-definitions';
8
- import { ScopeType } from '@fluidframework/driver-definitions/internal';
9
-
10
7
  // @alpha
11
8
  export function generateToken(tenantId: string, key: string, scopes: ScopeType[], documentId?: string, user?: IUser, lifetime?: number, ver?: string): string;
12
9
 
@@ -4,9 +4,6 @@
4
4
 
5
5
  ```ts
6
6
 
7
- import { IUser } from '@fluidframework/driver-definitions';
8
- import { ScopeType } from '@fluidframework/driver-definitions/internal';
9
-
10
7
  export { IUser }
11
8
 
12
9
  export { ScopeType }
@@ -4,9 +4,6 @@
4
4
 
5
5
  ```ts
6
6
 
7
- import { IUser } from '@fluidframework/driver-definitions';
8
- import { ScopeType } from '@fluidframework/driver-definitions/internal';
9
-
10
7
  export { IUser }
11
8
 
12
9
  export { ScopeType }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/azure-service-utils",
3
- "version": "2.0.0-rc.5.0.1",
3
+ "version": "2.1.0-274160",
4
4
  "description": "Helper service-side utilities for connecting to Azure Fluid Relay service",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -47,7 +47,7 @@
47
47
  "main": "lib/index.js",
48
48
  "types": "lib/public.d.ts",
49
49
  "dependencies": {
50
- "@fluidframework/driver-definitions": ">=2.0.0-rc.5.0.1 <2.0.0-rc.5.1.0",
50
+ "@fluidframework/driver-definitions": "2.1.0-274160",
51
51
  "jsrsasign": "^11.0.0",
52
52
  "uuid": "^9.0.0"
53
53
  },
@@ -55,7 +55,7 @@
55
55
  "@arethetypeswrong/cli": "^0.15.2",
56
56
  "@biomejs/biome": "^1.7.3",
57
57
  "@fluid-tools/build-cli": "^0.39.0",
58
- "@fluidframework/azure-service-utils-previous": "npm:@fluidframework/azure-service-utils@2.0.0-rc.4.0.0",
58
+ "@fluidframework/azure-service-utils-previous": "npm:@fluidframework/azure-service-utils@2.0.0-rc.5.0.0",
59
59
  "@fluidframework/build-common": "^2.0.3",
60
60
  "@fluidframework/build-tools": "^0.39.0",
61
61
  "@fluidframework/eslint-config-fluid": "^5.3.0",
@@ -80,7 +80,9 @@
80
80
  "build": "fluid-build . --task build",
81
81
  "build:commonjs": "fluid-build . --task commonjs",
82
82
  "build:compile": "fluid-build . --task compile",
83
- "build:docs": "api-extractor run --local",
83
+ "build:docs": "concurrently \"npm:build:docs:*\"",
84
+ "build:docs:current": "api-extractor run --local",
85
+ "build:docs:legacy": "api-extractor run --local --config api-extractor/api-extractor.legacy.json",
84
86
  "build:esnext": "tsc --project ./tsconfig.json",
85
87
  "build:test": "npm run build:test:esm && npm run build:test:cjs",
86
88
  "build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
@@ -95,7 +97,9 @@
95
97
  "check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
96
98
  "check:format": "npm run check:biome",
97
99
  "check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
98
- "ci:build:docs": "api-extractor run",
100
+ "ci:build:docs": "concurrently \"npm:ci:build:docs:*\"",
101
+ "ci:build:docs:current": "api-extractor run",
102
+ "ci:build:docs:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
99
103
  "clean": "rimraf --glob dist lib \"*.d.ts\" \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
100
104
  "eslint": "eslint --format stylish src",
101
105
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
@@ -106,7 +110,7 @@
106
110
  "lint:fix": "fluid-build . --task eslint:fix --task format",
107
111
  "test": "echo \"Error: no test specified\" && exit 1",
108
112
  "tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
109
- "typetests:gen": "flub generate typetests --dir . -v --publicFallback",
113
+ "typetests:gen": "flub generate typetests --dir . -v",
110
114
  "typetests:prepare": "flub typetests --dir . --reset --previous --normalize"
111
115
  }
112
116
  }