@substrate/playground-client
Advanced tools
Comparing version 1.4.1 to 1.4.2
@@ -100,2 +100,9 @@ export interface Playground { | ||
startTime?: number; | ||
container?: ContainerStatus; | ||
} | ||
export declare type ContainerPhase = 'Running' | 'Terminated' | 'Waiting' | 'Unknown'; | ||
export interface ContainerStatus { | ||
phase: ContainerPhase; | ||
reason?: string; | ||
message?: string; | ||
} |
@@ -59,8 +59,6 @@ "use strict"; | ||
}; | ||
var __spreadArrays = (this && this.__spreadArrays) || function () { | ||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; | ||
for (var r = Array(s), k = 0, i = 0; i < il; i++) | ||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) | ||
r[k] = a[j]; | ||
return r; | ||
var __spreadArray = (this && this.__spreadArray) || function (to, from) { | ||
for (var i = 0, il = from.length, j = to.length; i < il; i++, j++) | ||
to[j] = from[i]; | ||
return to; | ||
}; | ||
@@ -82,3 +80,3 @@ Object.defineProperty(exports, "__esModule", { value: true }); | ||
} | ||
return __spreadArrays([this.base], resources).join("/"); | ||
return __spreadArray([this.base], resources).join("/"); | ||
}; | ||
@@ -85,0 +83,0 @@ Client.prototype.get = function (init) { |
@@ -100,2 +100,9 @@ export interface Playground { | ||
startTime?: number; | ||
container?: ContainerStatus; | ||
} | ||
export declare type ContainerPhase = 'Running' | 'Terminated' | 'Waiting' | 'Unknown'; | ||
export interface ContainerStatus { | ||
phase: ContainerPhase; | ||
reason?: string; | ||
message?: string; | ||
} |
{ | ||
"name": "@substrate/playground-client", | ||
"version": "1.4.1", | ||
"version": "1.4.2", | ||
"description": "An isomorphic client for Substrate Playground", | ||
@@ -34,4 +34,4 @@ "main": "dist/main/index.js", | ||
"devDependencies": { | ||
"typescript": "4.1.5" | ||
"typescript": "4.2.3" | ||
} | ||
} |
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
51005
1122