@fluidframework/core-interfaces
Advanced tools
Comparing version 0.27.9 to 0.28.0
@@ -8,4 +8,4 @@ /*! | ||
"extends": [ | ||
"@fluidframework/eslint-config-fluid" | ||
"@fluidframework/eslint-config-fluid/eslint7" | ||
] | ||
} |
@@ -14,3 +14,2 @@ /*! | ||
export interface IFluidLoadable extends IProvideFluidLoadable { | ||
readonly url: string; | ||
handle: IFluidHandle; | ||
@@ -31,5 +30,4 @@ } | ||
export interface IFluidConfiguration extends IProvideFluidConfiguration { | ||
canReconnect: boolean; | ||
scopes: string[]; | ||
} | ||
//# sourceMappingURL=fluidLoadable.d.ts.map |
@@ -20,8 +20,2 @@ /*! | ||
} | ||
export declare enum DriverHeader { | ||
summarizingClient = "fluid-client-summarizer" | ||
} | ||
export interface IDriverHeader { | ||
[DriverHeader.summarizingClient]: boolean; | ||
} | ||
export declare const IFluidRouter: keyof IProvideFluidRouter; | ||
@@ -28,0 +22,0 @@ /** |
@@ -7,7 +7,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var DriverHeader; | ||
(function (DriverHeader) { | ||
DriverHeader["summarizingClient"] = "fluid-client-summarizer"; | ||
})(DriverHeader = exports.DriverHeader || (exports.DriverHeader = {})); | ||
exports.IFluidRouter = "IFluidRouter"; | ||
//# sourceMappingURL=fluidRouter.js.map |
@@ -10,2 +10,3 @@ /*! | ||
export * from "./serializer"; | ||
export * from "./fluidPackage"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -14,2 +14,3 @@ "use strict"; | ||
__export(require("./serializer")); | ||
__export(require("./fluidPackage")); | ||
//# sourceMappingURL=index.js.map |
@@ -5,3 +5,3 @@ /*! | ||
*/ | ||
import { IFluidHandle, IFluidHandleContext } from "./handles"; | ||
import { IFluidHandle } from "./handles"; | ||
/** | ||
@@ -26,7 +26,7 @@ * JSON serialized form of an IFluidHandle | ||
*/ | ||
replaceHandles(value: any, context: IFluidHandleContext, bind: IFluidHandle): any; | ||
replaceHandles(value: any, bind: IFluidHandle): any; | ||
/** | ||
* Stringifies a given value. Converts any IFluidHandle to its stringified equivalent. | ||
*/ | ||
stringify(value: any, context: IFluidHandleContext, bind: IFluidHandle): string; | ||
stringify(value: any, bind: IFluidHandle): string; | ||
/** | ||
@@ -36,4 +36,4 @@ * Parses the given JSON input string and returns the JavaScript object defined by it. Any Fluid | ||
*/ | ||
parse(value: string, context: IFluidHandleContext): any; | ||
parse(value: string): any; | ||
} | ||
//# sourceMappingURL=serializer.d.ts.map |
@@ -14,3 +14,2 @@ /*! | ||
export interface IFluidLoadable extends IProvideFluidLoadable { | ||
readonly url: string; | ||
handle: IFluidHandle; | ||
@@ -31,5 +30,4 @@ } | ||
export interface IFluidConfiguration extends IProvideFluidConfiguration { | ||
canReconnect: boolean; | ||
scopes: string[]; | ||
} | ||
//# sourceMappingURL=fluidLoadable.d.ts.map |
@@ -20,8 +20,2 @@ /*! | ||
} | ||
export declare enum DriverHeader { | ||
summarizingClient = "fluid-client-summarizer" | ||
} | ||
export interface IDriverHeader { | ||
[DriverHeader.summarizingClient]: boolean; | ||
} | ||
export declare const IFluidRouter: keyof IProvideFluidRouter; | ||
@@ -28,0 +22,0 @@ /** |
@@ -5,7 +5,3 @@ /*! | ||
*/ | ||
export var DriverHeader; | ||
(function (DriverHeader) { | ||
DriverHeader["summarizingClient"] = "fluid-client-summarizer"; | ||
})(DriverHeader || (DriverHeader = {})); | ||
export const IFluidRouter = "IFluidRouter"; | ||
//# sourceMappingURL=fluidRouter.js.map |
@@ -10,2 +10,3 @@ /*! | ||
export * from "./serializer"; | ||
export * from "./fluidPackage"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -9,2 +9,3 @@ /*! | ||
export * from "./serializer"; | ||
export * from "./fluidPackage"; | ||
//# sourceMappingURL=index.js.map |
@@ -5,3 +5,3 @@ /*! | ||
*/ | ||
import { IFluidHandle, IFluidHandleContext } from "./handles"; | ||
import { IFluidHandle } from "./handles"; | ||
/** | ||
@@ -26,7 +26,7 @@ * JSON serialized form of an IFluidHandle | ||
*/ | ||
replaceHandles(value: any, context: IFluidHandleContext, bind: IFluidHandle): any; | ||
replaceHandles(value: any, bind: IFluidHandle): any; | ||
/** | ||
* Stringifies a given value. Converts any IFluidHandle to its stringified equivalent. | ||
*/ | ||
stringify(value: any, context: IFluidHandleContext, bind: IFluidHandle): string; | ||
stringify(value: any, bind: IFluidHandle): string; | ||
/** | ||
@@ -36,4 +36,4 @@ * Parses the given JSON input string and returns the JavaScript object defined by it. Any Fluid | ||
*/ | ||
parse(value: string, context: IFluidHandleContext): any; | ||
parse(value: string): any; | ||
} | ||
//# sourceMappingURL=serializer.d.ts.map |
{ | ||
"name": "@fluidframework/core-interfaces", | ||
"version": "0.27.9", | ||
"version": "0.28.0", | ||
"description": "Fluid object interfaces", | ||
@@ -21,3 +21,3 @@ "homepage": "https://fluidframework.com", | ||
"clean": "rimraf dist lib *.tsbuildinfo *.build.log", | ||
"eslint": "eslint --ext=ts,tsx --format stylish src", | ||
"eslint": "eslint --format stylish src", | ||
"eslint:fix": "eslint --ext=ts,tsx --format stylish src --fix", | ||
@@ -33,17 +33,16 @@ "lint": "npm run eslint", | ||
"@fluidframework/build-common": "^0.19.2", | ||
"@fluidframework/eslint-config-fluid": "^0.19.1", | ||
"@fluidframework/eslint-config-fluid": "^0.20.0", | ||
"@microsoft/api-extractor": "^7.7.2", | ||
"@types/node": "^10.17.24", | ||
"@typescript-eslint/eslint-plugin": "~2.17.0", | ||
"@typescript-eslint/parser": "~2.17.0", | ||
"@typescript-eslint/eslint-plugin": "~4.2.0", | ||
"@typescript-eslint/parser": "~4.2.0", | ||
"concurrently": "^5.2.0", | ||
"copyfiles": "^2.1.0", | ||
"eslint": "~6.8.0", | ||
"eslint-plugin-eslint-comments": "~3.1.2", | ||
"eslint-plugin-import": "2.20.0", | ||
"eslint": "~7.9.0", | ||
"eslint-plugin-eslint-comments": "~3.2.0", | ||
"eslint-plugin-import": "~2.22.0", | ||
"eslint-plugin-no-null": "~1.0.2", | ||
"eslint-plugin-optimize-regex": "~1.1.7", | ||
"eslint-plugin-prefer-arrow": "~1.1.7", | ||
"eslint-plugin-react": "~7.18.0", | ||
"eslint-plugin-unicorn": "~15.0.1", | ||
"eslint-plugin-prefer-arrow": "~1.2.2", | ||
"eslint-plugin-react": "~7.21.2", | ||
"eslint-plugin-unicorn": "~22.0.0", | ||
"rimraf": "^2.6.2", | ||
@@ -50,0 +49,0 @@ "typescript": "~3.7.4", |
@@ -17,5 +17,2 @@ /*! | ||
export interface IFluidLoadable extends IProvideFluidLoadable { | ||
// Absolute URL to the Fluid within the document | ||
readonly url: string; | ||
// Handle to the loadable FluidObject | ||
@@ -42,4 +39,3 @@ handle: IFluidHandle; | ||
export interface IFluidConfiguration extends IProvideFluidConfiguration { | ||
canReconnect: boolean; | ||
scopes: string[]; | ||
} |
@@ -22,10 +22,2 @@ /*! | ||
export enum DriverHeader { | ||
summarizingClient = "fluid-client-summarizer", | ||
} | ||
export interface IDriverHeader { | ||
[DriverHeader.summarizingClient]: boolean; | ||
} | ||
export const IFluidRouter: keyof IProvideFluidRouter = "IFluidRouter"; | ||
@@ -32,0 +24,0 @@ |
@@ -14,1 +14,2 @@ /*! | ||
export * from "./serializer"; | ||
export * from "./fluidPackage"; |
@@ -5,3 +5,3 @@ /*! | ||
*/ | ||
import { IFluidHandle, IFluidHandleContext } from "./handles"; | ||
import { IFluidHandle } from "./handles"; | ||
@@ -33,3 +33,3 @@ /** | ||
*/ | ||
replaceHandles(value: any, context: IFluidHandleContext, bind: IFluidHandle): any; | ||
replaceHandles(value: any, bind: IFluidHandle): any; | ||
@@ -39,3 +39,3 @@ /** | ||
*/ | ||
stringify(value: any, context: IFluidHandleContext, bind: IFluidHandle): string; | ||
stringify(value: any, bind: IFluidHandle): string; | ||
@@ -46,3 +46,3 @@ /** | ||
*/ | ||
parse(value: string, context: IFluidHandleContext): any; | ||
parse(value: string): any; | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
79749
18
70
1045