@fluidframework/gitresources
Advanced tools
Comparing version 0.1038.4001-145405 to 0.1039.1000
@@ -7,7 +7,4 @@ /*! | ||
module.exports = { | ||
"extends": [ | ||
require.resolve("@fluidframework/eslint-config-fluid"), | ||
"prettier" | ||
], | ||
"rules": {} | ||
} | ||
extends: [require.resolve("@fluidframework/eslint-config-fluid"), "prettier"], | ||
rules: {}, | ||
}; |
{ | ||
"name": "@fluidframework/gitresources", | ||
"version": "0.1038.4001-145405", | ||
"description": "Git resource definitions for Fluid services", | ||
"homepage": "https://fluidframework.com", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/microsoft/FluidFramework.git", | ||
"directory": "server/routerlicious/packages/gitresources" | ||
}, | ||
"license": "MIT", | ||
"author": "Microsoft and contributors", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"build": "concurrently npm:build:compile npm:lint", | ||
"build:compile": "npm run tsc", | ||
"build:full": "npm run build", | ||
"build:full:compile": "npm run build:compile", | ||
"clean": "rimraf dist *.tsbuildinfo *.build.log", | ||
"eslint": "eslint --format stylish src", | ||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout", | ||
"format": "npm run prettier:fix", | ||
"lint": "npm run eslint", | ||
"lint:fix": "npm run eslint:fix", | ||
"prettier": "prettier --check . --ignore-path ../../../.prettierignore", | ||
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore", | ||
"tsc": "tsc" | ||
}, | ||
"devDependencies": { | ||
"@fluid-tools/build-cli": "^0.8.0", | ||
"@fluidframework/build-common": "^1.1.0", | ||
"@fluidframework/build-tools": "^0.8.0", | ||
"@fluidframework/eslint-config-fluid": "^2.0.0", | ||
"@rushstack/eslint-config": "^2.6.1", | ||
"concurrently": "^7.5.0", | ||
"eslint": "~8.27.0", | ||
"prettier": "~2.6.2", | ||
"rimraf": "^3.0.2", | ||
"typescript": "~4.5.5" | ||
} | ||
"name": "@fluidframework/gitresources", | ||
"version": "0.1039.1000", | ||
"description": "Git resource definitions for Fluid services", | ||
"homepage": "https://fluidframework.com", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/microsoft/FluidFramework.git", | ||
"directory": "server/routerlicious/packages/gitresources" | ||
}, | ||
"license": "MIT", | ||
"author": "Microsoft and contributors", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"build": "concurrently npm:build:compile npm:lint", | ||
"build:compile": "npm run tsc", | ||
"build:full": "npm run build", | ||
"build:full:compile": "npm run build:compile", | ||
"clean": "rimraf dist *.tsbuildinfo *.build.log", | ||
"eslint": "eslint --format stylish src", | ||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout", | ||
"format": "npm run prettier:fix", | ||
"lint": "npm run eslint", | ||
"lint:fix": "npm run eslint:fix", | ||
"prettier": "prettier --check . --ignore-path ../../.prettierignore", | ||
"prettier:fix": "prettier --write . --ignore-path ../../.prettierignore", | ||
"tsc": "tsc" | ||
}, | ||
"devDependencies": { | ||
"@fluid-tools/build-cli": "0.13.0", | ||
"@fluidframework/build-common": "^1.1.0", | ||
"@fluidframework/build-tools": "0.13.0", | ||
"@fluidframework/eslint-config-fluid": "^2.0.0", | ||
"concurrently": "^7.6.0", | ||
"eslint": "~8.27.0", | ||
"prettier": "~2.6.2", | ||
"rimraf": "^4.4.0", | ||
"typescript": "~4.5.5" | ||
} | ||
} |
@@ -10,5 +10,5 @@ # @fluidframework/gitresources | ||
- https://developer.github.com/v3/git | ||
- https://git-scm.com/docs | ||
- https://developer.github.com/v3/git | ||
- https://git-scm.com/docs | ||
See [GitHub](https://github.com/microsoft/FluidFramework) for more details on the Fluid Framework and packages within. |
@@ -10,6 +10,6 @@ /*! | ||
export interface IAuthor { | ||
name: string; | ||
email: string; | ||
// ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ | ||
date: string; | ||
name: string; | ||
email: string; | ||
// ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ | ||
date: string; | ||
} | ||
@@ -21,6 +21,6 @@ | ||
export interface ICommitter { | ||
name: string; | ||
email: string; | ||
// ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ | ||
date: string; | ||
name: string; | ||
email: string; | ||
// ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ | ||
date: string; | ||
} | ||
@@ -32,4 +32,4 @@ | ||
export interface ICommitHash { | ||
sha: string; | ||
url: string; | ||
sha: string; | ||
url: string; | ||
} | ||
@@ -41,7 +41,7 @@ | ||
export interface ICreateCommitParams { | ||
message: string; | ||
tree: string; | ||
parents: string[]; | ||
// GitHub has signature verification on the author | ||
author: IAuthor; | ||
message: string; | ||
tree: string; | ||
parents: string[]; | ||
// GitHub has signature verification on the author | ||
author: IAuthor; | ||
} | ||
@@ -53,9 +53,9 @@ | ||
export interface ICommit { | ||
sha: string; | ||
url: string; | ||
author: IAuthor; | ||
committer: ICommitter; | ||
message: string; | ||
tree: ICommitHash; | ||
parents: ICommitHash[]; | ||
sha: string; | ||
url: string; | ||
author: IAuthor; | ||
committer: ICommitter; | ||
message: string; | ||
tree: ICommitHash; | ||
parents: ICommitHash[]; | ||
} | ||
@@ -74,12 +74,12 @@ | ||
export interface ICommitDetails { | ||
url: string; | ||
sha: string; | ||
commit: { | ||
url: string; | ||
author: IAuthor; | ||
committer: ICommitter; | ||
message: string; | ||
tree: ICommitHash; | ||
}; | ||
parents: ICommitHash[]; | ||
url: string; | ||
sha: string; | ||
commit: { | ||
url: string; | ||
author: IAuthor; | ||
committer: ICommitter; | ||
message: string; | ||
tree: ICommitHash; | ||
}; | ||
parents: ICommitHash[]; | ||
} | ||
@@ -91,7 +91,7 @@ | ||
export interface IBlob { | ||
content: string; | ||
encoding: string; | ||
url: string; | ||
sha: string; | ||
size: number; | ||
content: string; | ||
encoding: string; | ||
url: string; | ||
sha: string; | ||
size: number; | ||
} | ||
@@ -103,7 +103,7 @@ | ||
export interface ICreateBlobParams { | ||
// The encoded content | ||
content: string; | ||
// The encoded content | ||
content: string; | ||
// The encoding of the content. | ||
encoding: "utf-8" | "base64"; | ||
// The encoding of the content. | ||
encoding: "utf-8" | "base64"; | ||
} | ||
@@ -115,4 +115,4 @@ | ||
export interface ICreateBlobResponse { | ||
sha: string; | ||
url: string; | ||
sha: string; | ||
url: string; | ||
} | ||
@@ -124,9 +124,9 @@ | ||
export interface IRef { | ||
ref: string; | ||
url: string; | ||
object: { | ||
type: string; | ||
sha: string; | ||
url: string; | ||
}; | ||
ref: string; | ||
url: string; | ||
object: { | ||
type: string; | ||
sha: string; | ||
url: string; | ||
}; | ||
} | ||
@@ -138,4 +138,4 @@ | ||
export interface ICreateRefParams { | ||
ref: string; | ||
sha: string; | ||
ref: string; | ||
sha: string; | ||
} | ||
@@ -147,4 +147,4 @@ | ||
export interface IPatchRefParams { | ||
sha: string; | ||
force: boolean; | ||
sha: string; | ||
force: boolean; | ||
} | ||
@@ -157,3 +157,3 @@ | ||
export interface ICreateRepoParams { | ||
name: string; | ||
name: string; | ||
} | ||
@@ -165,6 +165,6 @@ | ||
export interface ICreateTreeEntry { | ||
path: string; | ||
mode: string; | ||
type: string; | ||
sha: string; | ||
path: string; | ||
mode: string; | ||
type: string; | ||
sha: string; | ||
} | ||
@@ -176,4 +176,4 @@ | ||
export interface ICreateTreeParams { | ||
base_tree?: string; | ||
tree: ICreateTreeEntry[]; | ||
base_tree?: string; | ||
tree: ICreateTreeEntry[]; | ||
} | ||
@@ -185,8 +185,8 @@ | ||
export interface ITreeEntry { | ||
path: string; | ||
mode: string; | ||
type: string; | ||
size: number; | ||
sha: string; | ||
url: string; | ||
path: string; | ||
mode: string; | ||
type: string; | ||
size: number; | ||
sha: string; | ||
url: string; | ||
} | ||
@@ -198,5 +198,5 @@ | ||
export interface ITree { | ||
sha: string; | ||
url: string; | ||
tree: ITreeEntry[]; | ||
sha: string; | ||
url: string; | ||
tree: ITreeEntry[]; | ||
} | ||
@@ -208,6 +208,6 @@ | ||
export interface ITagger { | ||
name: string; | ||
email: string; | ||
// ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ | ||
date: string; | ||
name: string; | ||
email: string; | ||
// ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ | ||
date: string; | ||
} | ||
@@ -219,7 +219,7 @@ | ||
export interface ICreateTagParams { | ||
tag: string; | ||
message: string; | ||
object: string; | ||
type: string; | ||
tagger: ITagger; | ||
tag: string; | ||
message: string; | ||
object: string; | ||
type: string; | ||
tagger: ITagger; | ||
} | ||
@@ -231,12 +231,12 @@ | ||
export interface ITag { | ||
tag: string; | ||
sha: string; | ||
url: string; | ||
message: string; | ||
tagger: ITagger; | ||
object: { | ||
type: string; | ||
sha: string; | ||
url: string; | ||
}; | ||
tag: string; | ||
sha: string; | ||
url: string; | ||
message: string; | ||
tagger: ITagger; | ||
object: { | ||
type: string; | ||
sha: string; | ||
url: string; | ||
}; | ||
} |
@@ -13,7 +13,7 @@ /*! | ||
export interface IHeader { | ||
// Tree representing all blobs in the snapshot | ||
tree: ITree; | ||
// Tree representing all blobs in the snapshot | ||
tree: ITree; | ||
// Key blobs returned for performance. These include object headers and attribute files. | ||
blobs: IBlob[]; | ||
// Key blobs returned for performance. These include object headers and attribute files. | ||
blobs: IBlob[]; | ||
} |
{ | ||
"extends": "@fluidframework/build-common/ts-common-config.json", | ||
"exclude": [ | ||
"dist", | ||
"node_modules" | ||
], | ||
"compilerOptions": { | ||
"rootDir": "./src", | ||
"outDir": "./dist" | ||
}, | ||
"include": [ | ||
"src/**/*" | ||
] | ||
"extends": "@fluidframework/build-common/ts-common-config.json", | ||
"exclude": ["dist", "node_modules"], | ||
"compilerOptions": { | ||
"rootDir": "./src", | ||
"outDir": "./dist", | ||
}, | ||
"include": ["src/**/*"], | ||
} |
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
9
21981
493