@shipstatic/ship 0.4.9 → 0.4.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/browser.d.ts CHANGED
@@ -208,6 +208,11 @@ declare class ApiHttp extends SimpleEvents {
208
208
  domain: string;
209
209
  hash: string;
210
210
  }>;
211
+ validateDomain(name: string): Promise<{
212
+ valid: boolean;
213
+ normalized?: string;
214
+ error?: string;
215
+ }>;
211
216
  createToken(ttl?: number, tags?: string[]): Promise<TokenCreateResponse>;
212
217
  listTokens(): Promise<TokenListResponse>;
213
218
  removeToken(token: string): Promise<void>;