@nteract/actions
Advanced tools
Comparing version 2.7.5 to 2.8.0
@@ -42,6 +42,3 @@ import { ContentRef, KernelInfo, KernelRef, LocalKernelProps, RemoteKernelProps } from "@nteract/types"; | ||
}): actionTypes.KernelRawStderr; | ||
export declare function killKernel(payload: { | ||
restarting: boolean; | ||
kernelRef?: KernelRef | null; | ||
}): actionTypes.KillKernelAction; | ||
export declare function killKernel(payload: actionTypes.KillKernelAction["payload"]): actionTypes.KillKernelAction; | ||
export declare function killKernelFailed(payload: { | ||
@@ -54,5 +51,3 @@ error: Error; | ||
}): actionTypes.KillKernelSuccessful; | ||
export declare function interruptKernel(payload: { | ||
kernelRef?: KernelRef | null; | ||
}): actionTypes.InterruptKernel; | ||
export declare function interruptKernel(payload: actionTypes.InterruptKernel["payload"]): actionTypes.InterruptKernel; | ||
export declare function interruptKernelSuccessful(payload: { | ||
@@ -65,7 +60,3 @@ kernelRef?: KernelRef | null; | ||
}): actionTypes.InterruptKernelFailed; | ||
export declare function restartKernel(payload: { | ||
outputHandling: actionTypes.RestartKernelOutputHandling; | ||
kernelRef?: KernelRef | null; | ||
contentRef: ContentRef; | ||
}): actionTypes.RestartKernel; | ||
export declare function restartKernel(payload: actionTypes.RestartKernel["payload"]): actionTypes.RestartKernel; | ||
export declare function restartKernelFailed(payload: { | ||
@@ -72,0 +63,0 @@ error: Error; |
@@ -250,3 +250,4 @@ import { CellId, CellType, JSONObject } from "@nteract/commutable"; | ||
value: string; | ||
contentRef: ContentRef; | ||
}; | ||
} |
@@ -72,2 +72,3 @@ import { CellId } from "@nteract/commutable"; | ||
kernelRef?: KernelRef | null; | ||
contentRef?: ContentRef | null; | ||
}; | ||
@@ -97,2 +98,3 @@ } | ||
kernelRef?: KernelRef | null; | ||
contentRef?: ContentRef | null; | ||
}; | ||
@@ -99,0 +101,0 @@ } |
{ | ||
"name": "@nteract/actions", | ||
"version": "2.7.5", | ||
"version": "2.8.0", | ||
"description": "A collection of actions", | ||
@@ -17,8 +17,8 @@ "main": "lib/index.js", | ||
"@nteract/commutable": "^7.1.4", | ||
"@nteract/messaging": "^6.1.3", | ||
"@nteract/messaging": "^6.1.4", | ||
"@nteract/types": "^4.4.0", | ||
"immutable": "^4.0.0-rc.12", | ||
"rx-jupyter": "^5.3.3" | ||
"rx-jupyter": "^5.3.4" | ||
}, | ||
"gitHead": "7e11466cfd195302d5460fb14e3d215044bd1bd2" | ||
"gitHead": "3054fe966bd280c9b5d3ec40e0767f756a2a0cc1" | ||
} |
@@ -93,6 +93,3 @@ import { | ||
export function killKernel(payload: { | ||
restarting: boolean; | ||
kernelRef?: KernelRef | null; | ||
}): actionTypes.KillKernelAction { | ||
export function killKernel(payload: actionTypes.KillKernelAction["payload"]): actionTypes.KillKernelAction { | ||
return { | ||
@@ -124,5 +121,5 @@ type: actionTypes.KILL_KERNEL, | ||
export function interruptKernel(payload: { | ||
kernelRef?: KernelRef | null; | ||
}): actionTypes.InterruptKernel { | ||
export function interruptKernel( | ||
payload: actionTypes.InterruptKernel["payload"] | ||
): actionTypes.InterruptKernel { | ||
return { | ||
@@ -154,7 +151,3 @@ type: actionTypes.INTERRUPT_KERNEL, | ||
export function restartKernel(payload: { | ||
outputHandling: actionTypes.RestartKernelOutputHandling; | ||
kernelRef?: KernelRef | null; | ||
contentRef: ContentRef; | ||
}): actionTypes.RestartKernel { | ||
export function restartKernel(payload: actionTypes.RestartKernel["payload"]): actionTypes.RestartKernel { | ||
return { | ||
@@ -161,0 +154,0 @@ type: actionTypes.RESTART_KERNEL, |
@@ -274,3 +274,4 @@ import { CellId, CellType, JSONObject } from "@nteract/commutable"; | ||
value: string; | ||
contentRef: ContentRef; | ||
}; | ||
} |
@@ -88,2 +88,3 @@ import { CellId } from "@nteract/commutable"; | ||
kernelRef?: KernelRef | null; | ||
contentRef?: ContentRef | null; | ||
}; | ||
@@ -116,2 +117,3 @@ } | ||
kernelRef?: KernelRef | null; | ||
contentRef?: ContentRef | null; | ||
}; | ||
@@ -118,0 +120,0 @@ } |
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
181875
5253
Updated@nteract/messaging@^6.1.4
Updatedrx-jupyter@^5.3.4