@fluidframework/container-definitions 2.0.0-dev.7.4.0.216897 → 2.0.0-dev.7.4.0.217212
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-definitions.api.md +35 -35
- package/dist/audience.d.ts +2 -2
- package/dist/audience.js.map +1 -1
- package/dist/container-definitions-alpha.d.ts +1125 -56
- package/dist/container-definitions-untrimmed.d.ts +39 -39
- package/dist/deltas.d.ts +7 -7
- package/dist/deltas.js.map +1 -1
- package/dist/error.d.ts +2 -2
- package/dist/error.js.map +1 -1
- package/dist/fluidModule.d.ts +1 -1
- package/dist/fluidModule.js.map +1 -1
- package/dist/fluidPackage.d.ts +7 -7
- package/dist/fluidPackage.js +1 -1
- package/dist/fluidPackage.js.map +1 -1
- package/dist/loader.d.ts +12 -12
- package/dist/loader.js.map +1 -1
- package/dist/runtime.d.ts +8 -8
- package/dist/runtime.js +2 -2
- package/dist/runtime.js.map +1 -1
- package/lib/audience.d.ts +2 -2
- package/lib/audience.js.map +1 -1
- package/lib/container-definitions-alpha.d.ts +1125 -56
- package/lib/container-definitions-untrimmed.d.ts +39 -39
- package/lib/deltas.d.ts +7 -7
- package/lib/deltas.js.map +1 -1
- package/lib/error.d.ts +2 -2
- package/lib/error.js.map +1 -1
- package/lib/fluidModule.d.ts +1 -1
- package/lib/fluidModule.js.map +1 -1
- package/lib/fluidPackage.d.ts +7 -7
- package/lib/fluidPackage.js +1 -1
- package/lib/fluidPackage.js.map +1 -1
- package/lib/loader.d.ts +12 -12
- package/lib/loader.js.map +1 -1
- package/lib/runtime.d.ts +8 -8
- package/lib/runtime.js +2 -2
- package/lib/runtime.js.map +1 -1
- package/package.json +3 -3
- package/src/audience.ts +2 -2
- package/src/deltas.ts +7 -7
- package/src/error.ts +2 -2
- package/src/fluidModule.ts +1 -1
- package/src/fluidPackage.ts +7 -7
- package/src/loader.ts +12 -12
- package/src/runtime.ts +8 -8
package/src/runtime.ts
CHANGED
|
@@ -32,7 +32,7 @@ import { IFluidCodeDetails } from "./fluidPackage";
|
|
|
32
32
|
/**
|
|
33
33
|
* The attachment state of some Fluid data (e.g. a container or data store), denoting whether it is uploaded to the
|
|
34
34
|
* service. The transition from detached to attached state is a one-way transition.
|
|
35
|
-
* @
|
|
35
|
+
* @alpha
|
|
36
36
|
*/
|
|
37
37
|
export enum AttachState {
|
|
38
38
|
/**
|
|
@@ -56,7 +56,7 @@ export enum AttachState {
|
|
|
56
56
|
/**
|
|
57
57
|
* The IRuntime represents an instantiation of a code package within a Container.
|
|
58
58
|
* Primarily held by the ContainerContext to be able to interact with the running instance of the Container.
|
|
59
|
-
* @
|
|
59
|
+
* @alpha
|
|
60
60
|
*/
|
|
61
61
|
export interface IRuntime extends IDisposable {
|
|
62
62
|
/**
|
|
@@ -126,7 +126,7 @@ export interface IRuntime extends IDisposable {
|
|
|
126
126
|
|
|
127
127
|
/**
|
|
128
128
|
* Payload type for IContainerContext.submitBatchFn()
|
|
129
|
-
* @
|
|
129
|
+
* @alpha
|
|
130
130
|
*/
|
|
131
131
|
export interface IBatchMessage {
|
|
132
132
|
contents?: string;
|
|
@@ -139,7 +139,7 @@ export interface IBatchMessage {
|
|
|
139
139
|
* IContainerContext is fundamentally just the set of things that an IRuntimeFactory (and IRuntime) will consume from the
|
|
140
140
|
* loader layer. It gets passed into the IRuntimeFactory.instantiateRuntime call. Only include members on this interface
|
|
141
141
|
* if you intend them to be consumed/called from the runtime layer.
|
|
142
|
-
* @
|
|
142
|
+
* @alpha
|
|
143
143
|
*/
|
|
144
144
|
export interface IContainerContext {
|
|
145
145
|
readonly options: ILoaderOptions;
|
|
@@ -220,12 +220,12 @@ export interface IContainerContext {
|
|
|
220
220
|
}
|
|
221
221
|
|
|
222
222
|
/**
|
|
223
|
-
* @
|
|
223
|
+
* @alpha
|
|
224
224
|
*/
|
|
225
225
|
export const IRuntimeFactory: keyof IProvideRuntimeFactory = "IRuntimeFactory";
|
|
226
226
|
|
|
227
227
|
/**
|
|
228
|
-
* @
|
|
228
|
+
* @alpha
|
|
229
229
|
*/
|
|
230
230
|
export interface IProvideRuntimeFactory {
|
|
231
231
|
readonly IRuntimeFactory: IRuntimeFactory;
|
|
@@ -236,7 +236,7 @@ export interface IProvideRuntimeFactory {
|
|
|
236
236
|
*
|
|
237
237
|
* Provides the entry point for the ContainerContext to load the proper IRuntime
|
|
238
238
|
* to start up the running instance of the Container.
|
|
239
|
-
* @
|
|
239
|
+
* @alpha
|
|
240
240
|
*/
|
|
241
241
|
export interface IRuntimeFactory extends IProvideRuntimeFactory {
|
|
242
242
|
/**
|
|
@@ -251,7 +251,7 @@ export interface IRuntimeFactory extends IProvideRuntimeFactory {
|
|
|
251
251
|
|
|
252
252
|
/**
|
|
253
253
|
* Defines list of properties expected for getPendingLocalState
|
|
254
|
-
* @
|
|
254
|
+
* @alpha
|
|
255
255
|
*/
|
|
256
256
|
export interface IGetPendingLocalStateProps {
|
|
257
257
|
/**
|