@fluidframework/runtime-definitions
Advanced tools
Comparing version 0.26.1 to 0.26.2
@@ -7,3 +7,3 @@ /*! | ||
import { ITelemetryLogger, IDisposable } from "@fluidframework/common-definitions"; | ||
import { IFluidObject, IFluidRouter, IProvideFluidHandleContext, IProvideFluidSerializer } from "@fluidframework/core-interfaces"; | ||
import { IFluidObject, IFluidRouter, IProvideFluidHandleContext, IProvideFluidSerializer, IRequest, IResponse } from "@fluidframework/core-interfaces"; | ||
import { IAudience, IBlobManager, IDeltaManager, ContainerWarning, ILoader, AttachState } from "@fluidframework/container-definitions"; | ||
@@ -48,2 +48,6 @@ import { IDocumentStorageService } from "@fluidframework/driver-definitions"; | ||
/** | ||
* Executes a request against the container runtime | ||
*/ | ||
request(request: IRequest): Promise<IResponse>; | ||
/** | ||
* Submits a container runtime level signal to be sent to other clients. | ||
@@ -50,0 +54,0 @@ * @param type - Type of the signal. |
{ | ||
"name": "@fluidframework/runtime-definitions", | ||
"version": "0.26.1", | ||
"version": "0.26.2", | ||
"description": "Fluid Runtime definitions", | ||
@@ -30,5 +30,5 @@ "homepage": "https://fluidframework.com", | ||
"@fluidframework/common-definitions": "^0.19.1", | ||
"@fluidframework/container-definitions": "^0.26.1", | ||
"@fluidframework/core-interfaces": "^0.26.1", | ||
"@fluidframework/driver-definitions": "^0.26.1", | ||
"@fluidframework/container-definitions": "^0.26.2", | ||
"@fluidframework/core-interfaces": "^0.26.2", | ||
"@fluidframework/driver-definitions": "^0.26.2", | ||
"@fluidframework/protocol-definitions": "^0.1012.0", | ||
@@ -35,0 +35,0 @@ "@types/node": "^10.17.24" |
@@ -13,2 +13,4 @@ /*! | ||
IProvideFluidSerializer, | ||
IRequest, | ||
IResponse, | ||
} from "@fluidframework/core-interfaces"; | ||
@@ -81,2 +83,7 @@ import { | ||
/** | ||
* Executes a request against the container runtime | ||
*/ | ||
request(request: IRequest): Promise<IResponse>; | ||
/** | ||
* Submits a container runtime level signal to be sent to other clients. | ||
@@ -83,0 +90,0 @@ * @param type - Type of the signal. |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
100114
1402