@types/dockerode
Advanced tools
Comparing version 2.5.18 to 2.5.19
@@ -378,16 +378,35 @@ // Type definitions for dockerode 2.5 | ||
// not complete definition of network inspection | ||
// info which is returned by list / inspect | ||
// Information returned from inspecting a network | ||
interface NetworkInspectInfo { | ||
Name: string; | ||
Id: string; | ||
Name: string; | ||
Driver: string; | ||
Created: string; | ||
Scope: string; | ||
Driver: string; | ||
EnableIPv6: boolean; | ||
IPAM?: IPAM; | ||
Internal: boolean; | ||
Attachable: boolean; | ||
Ingress: boolean; | ||
Containers?: { [id: string]: NetworkContainer }; | ||
Options?: { [key: string]: string }; | ||
Labels?: { [key: string]: string }; | ||
} | ||
interface NetworkContainer { | ||
Name: string; | ||
EndpointID: string; | ||
MacAddress: string; | ||
Ipv4Address: string; | ||
IPv6Address: string; | ||
} | ||
/* tslint:disable:interface-name */ | ||
interface IPAM { | ||
Driver: string; | ||
Config?: { [key: string]: string }; | ||
Options?: Array<{ [key: string]: string }>; | ||
} | ||
/* tslint:enable:interface-name */ | ||
interface VolumeInspectInfo { | ||
@@ -394,0 +413,0 @@ Name: string; |
{ | ||
"name": "@types/dockerode", | ||
"version": "2.5.18", | ||
"version": "2.5.19", | ||
"description": "TypeScript definitions for dockerode", | ||
@@ -59,4 +59,4 @@ "license": "MIT", | ||
}, | ||
"typesPublisherContentHash": "c5e37477c11baef4f122e7654ecdcca4b9b713491af49907ad689aee1e317d46", | ||
"typesPublisherContentHash": "249481754b6b159ffd6dfd323b38108694599cb0e7c7a6cdd7a617ba194ecd5e", | ||
"typeScriptVersion": "2.2" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Thu, 30 May 2019 18:44:31 GMT | ||
* Last updated: Tue, 11 Jun 2019 20:37:31 GMT | ||
* Dependencies: @types/node | ||
@@ -14,0 +14,0 @@ * Global values: none |
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
38611
1091