@fluidframework/routerlicious-urlresolver 2.0.0-dev-rc.5.0.0.267932 → 2.0.0-dev-rc.5.0.0.268409

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,15 @@
1
+ ## Alpha API Report File for "@fluidframework/routerlicious-urlresolver"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import { IRequest } from '@fluidframework/core-interfaces';
8
+ import { IResolvedUrl } from '@fluidframework/driver-definitions/internal';
9
+ import { IUrlResolver } from '@fluidframework/driver-definitions/internal';
10
+ import { IUser } from '@fluidframework/driver-definitions';
11
+ import { Provider } from 'nconf';
12
+
13
+ // (No @packageDocumentation comment for this package)
14
+
15
+ ```
@@ -0,0 +1,15 @@
1
+ ## Beta API Report File for "@fluidframework/routerlicious-urlresolver"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import { IRequest } from '@fluidframework/core-interfaces';
8
+ import { IResolvedUrl } from '@fluidframework/driver-definitions/internal';
9
+ import { IUrlResolver } from '@fluidframework/driver-definitions/internal';
10
+ import { IUser } from '@fluidframework/driver-definitions';
11
+ import { Provider } from 'nconf';
12
+
13
+ // (No @packageDocumentation comment for this package)
14
+
15
+ ```
@@ -0,0 +1,15 @@
1
+ ## Public API Report File for "@fluidframework/routerlicious-urlresolver"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import { IRequest } from '@fluidframework/core-interfaces';
8
+ import { IResolvedUrl } from '@fluidframework/driver-definitions/internal';
9
+ import { IUrlResolver } from '@fluidframework/driver-definitions/internal';
10
+ import { IUser } from '@fluidframework/driver-definitions';
11
+ import { Provider } from 'nconf';
12
+
13
+ // (No @packageDocumentation comment for this package)
14
+
15
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/routerlicious-urlresolver",
3
- "version": "2.0.0-dev-rc.5.0.0.267932",
3
+ "version": "2.0.0-dev-rc.5.0.0.268409",
4
4
  "description": "Url Resolver for routerlicious urls.",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -37,19 +37,19 @@
37
37
  "main": "lib/index.js",
38
38
  "types": "lib/public.d.ts",
39
39
  "dependencies": {
40
- "@fluidframework/core-interfaces": "2.0.0-dev-rc.5.0.0.267932",
41
- "@fluidframework/core-utils": "2.0.0-dev-rc.5.0.0.267932",
42
- "@fluidframework/driver-definitions": "2.0.0-dev-rc.5.0.0.267932",
40
+ "@fluidframework/core-interfaces": "2.0.0-dev-rc.5.0.0.268409",
41
+ "@fluidframework/core-utils": "2.0.0-dev-rc.5.0.0.268409",
42
+ "@fluidframework/driver-definitions": "2.0.0-dev-rc.5.0.0.268409",
43
43
  "nconf": "^0.12.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@arethetypeswrong/cli": "^0.15.2",
47
- "@biomejs/biome": "^1.6.2",
48
- "@fluid-internal/mocha-test-setup": "2.0.0-dev-rc.5.0.0.267932",
47
+ "@biomejs/biome": "^1.7.3",
48
+ "@fluid-internal/mocha-test-setup": "2.0.0-dev-rc.5.0.0.268409",
49
49
  "@fluid-tools/build-cli": "^0.39.0-264124",
50
50
  "@fluidframework/build-common": "^2.0.3",
51
51
  "@fluidframework/build-tools": "^0.39.0-264124",
52
- "@fluidframework/eslint-config-fluid": "^5.1.0",
52
+ "@fluidframework/eslint-config-fluid": "^5.3.0",
53
53
  "@fluidframework/routerlicious-urlresolver-previous": "npm:@fluidframework/routerlicious-urlresolver@2.0.0-rc.4.0.0",
54
54
  "@microsoft/api-extractor": "^7.45.1",
55
55
  "@types/mocha": "^9.1.1",
@@ -1,47 +0,0 @@
1
- ## API Report File for "@fluidframework/routerlicious-urlresolver"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- import { IRequest } from '@fluidframework/core-interfaces';
8
- import { IResolvedUrl } from '@fluidframework/driver-definitions/internal';
9
- import { IUrlResolver } from '@fluidframework/driver-definitions/internal';
10
- import { IUser } from '@fluidframework/driver-definitions';
11
- import { Provider } from 'nconf';
12
-
13
- // @internal (undocumented)
14
- export interface IAlfredUser extends IUser {
15
- // (undocumented)
16
- displayName: string;
17
- // (undocumented)
18
- name: string;
19
- }
20
-
21
- // @internal (undocumented)
22
- export interface IConfig {
23
- // (undocumented)
24
- blobStorageUrl: string;
25
- // (undocumented)
26
- documentId: string;
27
- // (undocumented)
28
- serverUrl: string;
29
- // (undocumented)
30
- tenantId: string;
31
- }
32
-
33
- // @internal (undocumented)
34
- export class RouterliciousUrlResolver implements IUrlResolver {
35
- constructor(config: {
36
- provider: Provider;
37
- tenantId: string;
38
- documentId: string;
39
- } | undefined, getToken: () => Promise<string>, hostUrl: string);
40
- // (undocumented)
41
- getAbsoluteUrl(resolvedUrl: IResolvedUrl, relativeUrl: string): Promise<string>;
42
- resolve(request: IRequest): Promise<IResolvedUrl | undefined>;
43
- }
44
-
45
- // (No @packageDocumentation comment for this package)
46
-
47
- ```