@fluidframework/container-loader 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.
- package/api-report/{container-loader.api.md → container-loader.alpha.api.md} +1 -13
- package/api-report/container-loader.beta.api.md +40 -0
- package/api-report/container-loader.public.api.md +40 -0
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/package.json +12 -12
- package/src/packageVersion.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## API Report File for "@fluidframework/container-loader"
|
|
1
|
+
## Alpha API Report File for "@fluidframework/container-loader"
|
|
2
2
|
|
|
3
3
|
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
4
|
|
|
@@ -40,12 +40,6 @@ export interface ICodeDetailsLoader extends Partial<IProvideFluidCodeDetailsComp
|
|
|
40
40
|
load(source: IFluidCodeDetails): Promise<IFluidModuleWithDetails>;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
// @internal
|
|
44
|
-
export interface IContainerExperimental extends IContainer {
|
|
45
|
-
closeAndGetPendingLocalState?(stopBlobAttachingSignal?: AbortSignal): Promise<string>;
|
|
46
|
-
getPendingLocalState?(): Promise<string>;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
43
|
// @alpha @deprecated
|
|
50
44
|
export type IDetachedBlobStorage = Pick<IDocumentStorageService, "createBlob" | "readBlob"> & {
|
|
51
45
|
size: number;
|
|
@@ -107,12 +101,6 @@ export interface IProtocolHandler extends IProtocolHandler_2 {
|
|
|
107
101
|
processSignal(message: ISignalMessage): any;
|
|
108
102
|
}
|
|
109
103
|
|
|
110
|
-
// @internal
|
|
111
|
-
export function isLocationRedirectionError(error: any): error is ILocationRedirectionError;
|
|
112
|
-
|
|
113
|
-
// @internal
|
|
114
|
-
export function loadContainerPaused(loader: ILoader, request: IRequest, loadToSequenceNumber?: number, signal?: AbortSignal): Promise<IContainer>;
|
|
115
|
-
|
|
116
104
|
// @alpha
|
|
117
105
|
export class Loader implements IHostLoader {
|
|
118
106
|
constructor(loaderProps: ILoaderProps);
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
## Beta API Report File for "@fluidframework/container-loader"
|
|
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 { FluidObject } from '@fluidframework/core-interfaces';
|
|
8
|
+
import { IAudienceOwner } from '@fluidframework/container-definitions/internal';
|
|
9
|
+
import { IClientDetails } from '@fluidframework/driver-definitions';
|
|
10
|
+
import { IConfigProviderBase } from '@fluidframework/core-interfaces';
|
|
11
|
+
import { IContainer } from '@fluidframework/container-definitions/internal';
|
|
12
|
+
import { IDocumentAttributes } from '@fluidframework/driver-definitions/internal';
|
|
13
|
+
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions/internal';
|
|
14
|
+
import { IDocumentStorageService } from '@fluidframework/driver-definitions/internal';
|
|
15
|
+
import { IFluidCodeDetails } from '@fluidframework/container-definitions/internal';
|
|
16
|
+
import { IFluidModule } from '@fluidframework/container-definitions/internal';
|
|
17
|
+
import { IHostLoader } from '@fluidframework/container-definitions/internal';
|
|
18
|
+
import { ILoader } from '@fluidframework/container-definitions/internal';
|
|
19
|
+
import { ILoaderOptions as ILoaderOptions_2 } from '@fluidframework/container-definitions/internal';
|
|
20
|
+
import { ILocationRedirectionError } from '@fluidframework/driver-definitions/internal';
|
|
21
|
+
import { IProtocolHandler as IProtocolHandler_2 } from '@fluidframework/protocol-base';
|
|
22
|
+
import { IProvideFluidCodeDetailsComparer } from '@fluidframework/container-definitions/internal';
|
|
23
|
+
import { IQuorumSnapshot } from '@fluidframework/protocol-base';
|
|
24
|
+
import { IRequest } from '@fluidframework/core-interfaces';
|
|
25
|
+
import { ISignalMessage } from '@fluidframework/driver-definitions';
|
|
26
|
+
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
27
|
+
import { ITelemetryLoggerExt } from '@fluidframework/telemetry-utils/internal';
|
|
28
|
+
import { IUrlResolver } from '@fluidframework/driver-definitions/internal';
|
|
29
|
+
|
|
30
|
+
// @public
|
|
31
|
+
export enum ConnectionState {
|
|
32
|
+
CatchingUp = 1,
|
|
33
|
+
Connected = 2,
|
|
34
|
+
Disconnected = 0,
|
|
35
|
+
EstablishingConnection = 3
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// (No @packageDocumentation comment for this package)
|
|
39
|
+
|
|
40
|
+
```
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
## Public API Report File for "@fluidframework/container-loader"
|
|
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 { FluidObject } from '@fluidframework/core-interfaces';
|
|
8
|
+
import { IAudienceOwner } from '@fluidframework/container-definitions/internal';
|
|
9
|
+
import { IClientDetails } from '@fluidframework/driver-definitions';
|
|
10
|
+
import { IConfigProviderBase } from '@fluidframework/core-interfaces';
|
|
11
|
+
import { IContainer } from '@fluidframework/container-definitions/internal';
|
|
12
|
+
import { IDocumentAttributes } from '@fluidframework/driver-definitions/internal';
|
|
13
|
+
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions/internal';
|
|
14
|
+
import { IDocumentStorageService } from '@fluidframework/driver-definitions/internal';
|
|
15
|
+
import { IFluidCodeDetails } from '@fluidframework/container-definitions/internal';
|
|
16
|
+
import { IFluidModule } from '@fluidframework/container-definitions/internal';
|
|
17
|
+
import { IHostLoader } from '@fluidframework/container-definitions/internal';
|
|
18
|
+
import { ILoader } from '@fluidframework/container-definitions/internal';
|
|
19
|
+
import { ILoaderOptions as ILoaderOptions_2 } from '@fluidframework/container-definitions/internal';
|
|
20
|
+
import { ILocationRedirectionError } from '@fluidframework/driver-definitions/internal';
|
|
21
|
+
import { IProtocolHandler as IProtocolHandler_2 } from '@fluidframework/protocol-base';
|
|
22
|
+
import { IProvideFluidCodeDetailsComparer } from '@fluidframework/container-definitions/internal';
|
|
23
|
+
import { IQuorumSnapshot } from '@fluidframework/protocol-base';
|
|
24
|
+
import { IRequest } from '@fluidframework/core-interfaces';
|
|
25
|
+
import { ISignalMessage } from '@fluidframework/driver-definitions';
|
|
26
|
+
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
27
|
+
import { ITelemetryLoggerExt } from '@fluidframework/telemetry-utils/internal';
|
|
28
|
+
import { IUrlResolver } from '@fluidframework/driver-definitions/internal';
|
|
29
|
+
|
|
30
|
+
// @public
|
|
31
|
+
export enum ConnectionState {
|
|
32
|
+
CatchingUp = 1,
|
|
33
|
+
Connected = 2,
|
|
34
|
+
Disconnected = 0,
|
|
35
|
+
EstablishingConnection = 3
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// (No @packageDocumentation comment for this package)
|
|
39
|
+
|
|
40
|
+
```
|
package/dist/packageVersion.d.ts
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
|
|
6
6
|
*/
|
|
7
7
|
export declare const pkgName = "@fluidframework/container-loader";
|
|
8
|
-
export declare const pkgVersion = "2.0.0-dev-rc.5.0.0.
|
|
8
|
+
export declare const pkgVersion = "2.0.0-dev-rc.5.0.0.268409";
|
|
9
9
|
//# sourceMappingURL=packageVersion.d.ts.map
|
package/dist/packageVersion.js
CHANGED
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.pkgVersion = exports.pkgName = void 0;
|
|
10
10
|
exports.pkgName = "@fluidframework/container-loader";
|
|
11
|
-
exports.pkgVersion = "2.0.0-dev-rc.5.0.0.
|
|
11
|
+
exports.pkgVersion = "2.0.0-dev-rc.5.0.0.268409";
|
|
12
12
|
//# sourceMappingURL=packageVersion.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,kCAAkC,CAAC;AAC7C,QAAA,UAAU,GAAG,2BAA2B,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/container-loader\";\nexport const pkgVersion = \"2.0.0-dev-rc.5.0.0.
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,kCAAkC,CAAC;AAC7C,QAAA,UAAU,GAAG,2BAA2B,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/container-loader\";\nexport const pkgVersion = \"2.0.0-dev-rc.5.0.0.268409\";\n"]}
|
package/lib/packageVersion.d.ts
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
|
|
6
6
|
*/
|
|
7
7
|
export declare const pkgName = "@fluidframework/container-loader";
|
|
8
|
-
export declare const pkgVersion = "2.0.0-dev-rc.5.0.0.
|
|
8
|
+
export declare const pkgVersion = "2.0.0-dev-rc.5.0.0.268409";
|
|
9
9
|
//# sourceMappingURL=packageVersion.d.ts.map
|
package/lib/packageVersion.js
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
|
|
6
6
|
*/
|
|
7
7
|
export const pkgName = "@fluidframework/container-loader";
|
|
8
|
-
export const pkgVersion = "2.0.0-dev-rc.5.0.0.
|
|
8
|
+
export const pkgVersion = "2.0.0-dev-rc.5.0.0.268409";
|
|
9
9
|
//# sourceMappingURL=packageVersion.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,kCAAkC,CAAC;AAC1D,MAAM,CAAC,MAAM,UAAU,GAAG,2BAA2B,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/container-loader\";\nexport const pkgVersion = \"2.0.0-dev-rc.5.0.0.
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,kCAAkC,CAAC;AAC1D,MAAM,CAAC,MAAM,UAAU,GAAG,2BAA2B,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/container-loader\";\nexport const pkgVersion = \"2.0.0-dev-rc.5.0.0.268409\";\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/container-loader",
|
|
3
|
-
"version": "2.0.0-dev-rc.5.0.0.
|
|
3
|
+
"version": "2.0.0-dev-rc.5.0.0.268409",
|
|
4
4
|
"description": "Fluid container loader",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -117,14 +117,14 @@
|
|
|
117
117
|
"temp-directory": "nyc/.nyc_output"
|
|
118
118
|
},
|
|
119
119
|
"dependencies": {
|
|
120
|
-
"@fluid-internal/client-utils": "2.0.0-dev-rc.5.0.0.
|
|
121
|
-
"@fluidframework/container-definitions": "2.0.0-dev-rc.5.0.0.
|
|
122
|
-
"@fluidframework/core-interfaces": "2.0.0-dev-rc.5.0.0.
|
|
123
|
-
"@fluidframework/core-utils": "2.0.0-dev-rc.5.0.0.
|
|
124
|
-
"@fluidframework/driver-definitions": "2.0.0-dev-rc.5.0.0.
|
|
125
|
-
"@fluidframework/driver-utils": "2.0.0-dev-rc.5.0.0.
|
|
120
|
+
"@fluid-internal/client-utils": "2.0.0-dev-rc.5.0.0.268409",
|
|
121
|
+
"@fluidframework/container-definitions": "2.0.0-dev-rc.5.0.0.268409",
|
|
122
|
+
"@fluidframework/core-interfaces": "2.0.0-dev-rc.5.0.0.268409",
|
|
123
|
+
"@fluidframework/core-utils": "2.0.0-dev-rc.5.0.0.268409",
|
|
124
|
+
"@fluidframework/driver-definitions": "2.0.0-dev-rc.5.0.0.268409",
|
|
125
|
+
"@fluidframework/driver-utils": "2.0.0-dev-rc.5.0.0.268409",
|
|
126
126
|
"@fluidframework/protocol-base": "^4.0.0",
|
|
127
|
-
"@fluidframework/telemetry-utils": "2.0.0-dev-rc.5.0.0.
|
|
127
|
+
"@fluidframework/telemetry-utils": "2.0.0-dev-rc.5.0.0.268409",
|
|
128
128
|
"@ungap/structured-clone": "^1.2.0",
|
|
129
129
|
"debug": "^4.3.4",
|
|
130
130
|
"double-ended-queue": "^2.1.0-0",
|
|
@@ -132,14 +132,14 @@
|
|
|
132
132
|
},
|
|
133
133
|
"devDependencies": {
|
|
134
134
|
"@arethetypeswrong/cli": "^0.15.2",
|
|
135
|
-
"@biomejs/biome": "^1.
|
|
136
|
-
"@fluid-internal/mocha-test-setup": "2.0.0-dev-rc.5.0.0.
|
|
137
|
-
"@fluid-private/test-loader-utils": "2.0.0-dev-rc.5.0.0.
|
|
135
|
+
"@biomejs/biome": "^1.7.3",
|
|
136
|
+
"@fluid-internal/mocha-test-setup": "2.0.0-dev-rc.5.0.0.268409",
|
|
137
|
+
"@fluid-private/test-loader-utils": "2.0.0-dev-rc.5.0.0.268409",
|
|
138
138
|
"@fluid-tools/build-cli": "^0.39.0-264124",
|
|
139
139
|
"@fluidframework/build-common": "^2.0.3",
|
|
140
140
|
"@fluidframework/build-tools": "^0.39.0-264124",
|
|
141
141
|
"@fluidframework/container-loader-previous": "npm:@fluidframework/container-loader@2.0.0-rc.4.0.0",
|
|
142
|
-
"@fluidframework/eslint-config-fluid": "^5.
|
|
142
|
+
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
|
143
143
|
"@microsoft/api-extractor": "^7.45.1",
|
|
144
144
|
"@types/debug": "^4.1.5",
|
|
145
145
|
"@types/double-ended-queue": "^2.1.0",
|
package/src/packageVersion.ts
CHANGED