@fluidframework/azure-service-utils 2.60.0 → 2.61.0-355516

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.
@@ -4,6 +4,9 @@
4
4
 
5
5
  ```ts
6
6
 
7
- export { IUser }
7
+ // @public
8
+ export interface IUser {
9
+ id: string;
10
+ }
8
11
 
9
12
  ```
@@ -7,8 +7,16 @@
7
7
  // @beta @legacy
8
8
  export function generateToken(tenantId: string, key: string, scopes: ScopeType[], documentId?: string, user?: IUser, lifetime?: number, ver?: string): string;
9
9
 
10
- export { IUser }
10
+ // @public
11
+ export interface IUser {
12
+ id: string;
13
+ }
11
14
 
12
- export { ScopeType }
15
+ // @beta @legacy
16
+ export enum ScopeType {
17
+ DocRead = "doc:read",
18
+ DocWrite = "doc:write",
19
+ SummaryWrite = "summary:write"
20
+ }
13
21
 
14
22
  ```
@@ -4,6 +4,9 @@
4
4
 
5
5
  ```ts
6
6
 
7
- export { IUser }
7
+ // @public
8
+ export interface IUser {
9
+ id: string;
10
+ }
8
11
 
9
12
  ```
@@ -4,6 +4,9 @@
4
4
 
5
5
  ```ts
6
6
 
7
- export { IUser }
7
+ // @public
8
+ export interface IUser {
9
+ id: string;
10
+ }
8
11
 
9
12
  ```
package/dist/legacy.d.ts CHANGED
@@ -21,10 +21,12 @@
21
21
  */
22
22
 
23
23
  export {
24
- // @public APIs
24
+ // #region @public APIs
25
25
  IUser,
26
+ // #endregion
26
27
 
27
- // @legacy APIs
28
+ // #region @legacyBeta APIs
28
29
  ScopeType,
29
30
  generateToken
31
+ // #endregion
30
32
  } from "./index.js";
package/dist/public.d.ts CHANGED
@@ -21,6 +21,7 @@
21
21
  */
22
22
 
23
23
  export {
24
- // @public APIs
24
+ // #region @public APIs
25
25
  IUser
26
+ // #endregion
26
27
  } from "./index.js";
package/lib/legacy.d.ts CHANGED
@@ -21,10 +21,12 @@
21
21
  */
22
22
 
23
23
  export {
24
- // @public APIs
24
+ // #region @public APIs
25
25
  IUser,
26
+ // #endregion
26
27
 
27
- // @legacy APIs
28
+ // #region @legacyBeta APIs
28
29
  ScopeType,
29
30
  generateToken
31
+ // #endregion
30
32
  } from "./index.js";
package/lib/public.d.ts CHANGED
@@ -21,6 +21,7 @@
21
21
  */
22
22
 
23
23
  export {
24
- // @public APIs
24
+ // #region @public APIs
25
25
  IUser
26
+ // #endregion
26
27
  } from "./index.js";
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.52.8"
8
+ "packageVersion": "7.52.11"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/azure-service-utils",
3
- "version": "2.60.0",
3
+ "version": "2.61.0-355516",
4
4
  "description": "Helper service-side utilities for connecting to Azure Fluid Relay service",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -47,19 +47,19 @@
47
47
  "main": "lib/index.js",
48
48
  "types": "lib/public.d.ts",
49
49
  "dependencies": {
50
- "@fluidframework/driver-definitions": "~2.60.0",
50
+ "@fluidframework/driver-definitions": "2.61.0-355516",
51
51
  "jsrsasign": "^11.0.0",
52
52
  "uuid": "^11.1.0"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@arethetypeswrong/cli": "^0.17.1",
56
56
  "@biomejs/biome": "~1.9.3",
57
- "@fluid-tools/build-cli": "^0.57.0",
58
- "@fluidframework/azure-service-utils-previous": "npm:@fluidframework/azure-service-utils@2.53.0",
57
+ "@fluid-tools/build-cli": "^0.58.1",
58
+ "@fluidframework/azure-service-utils-previous": "npm:@fluidframework/azure-service-utils@2.60.0",
59
59
  "@fluidframework/build-common": "^2.0.3",
60
- "@fluidframework/build-tools": "^0.57.0",
60
+ "@fluidframework/build-tools": "^0.58.1",
61
61
  "@fluidframework/eslint-config-fluid": "^6.0.0",
62
- "@microsoft/api-extractor": "7.52.8",
62
+ "@microsoft/api-extractor": "7.52.11",
63
63
  "@types/jsrsasign": "^10.5.12",
64
64
  "concurrently": "^8.2.1",
65
65
  "copyfiles": "^2.4.1",
@@ -74,8 +74,8 @@
74
74
  },
75
75
  "scripts": {
76
76
  "api": "fluid-build . --task api",
77
- "api-extractor:commonjs": "flub generate entrypoints --outDir ./dist",
78
- "api-extractor:esnext": "flub generate entrypoints --outDir ./lib --node10TypeCompat",
77
+ "api-extractor:commonjs": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./dist",
78
+ "api-extractor:esnext": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
79
79
  "build": "fluid-build . --task build",
80
80
  "build:api-reports": "concurrently \"npm:build:api-reports:*\"",
81
81
  "build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor.current.json",