@scaffoldly/rowdy 0.1.0-beta.20251126184957.ef3d97f → 0.1.0-beta.20251126212749.09b9876

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/index.d.ts CHANGED
@@ -54,8 +54,11 @@ interface IImageApi {
54
54
  pullImage(image: string, opts?: PullImageOptions): Observable<TPulledImage>;
55
55
  }
56
56
  type TPulledImage = {
57
- image: string;
58
- imageRef: string;
57
+ Image: string;
58
+ ImageUri: string;
59
+ Command?: string[];
60
+ Entrypoint?: string[];
61
+ WorkDir?: string;
59
62
  };
60
63
  type TRegistry = {
61
64
  registry: string;
@@ -261,7 +264,7 @@ declare class HttpHeaders implements ILoggable {
261
264
  intoAxios(): AxiosHeaders;
262
265
  intoJSON(): Record<string, unknown>;
263
266
  intoHeaders(): Headers;
264
- override(key: string, value?: string | string[] | undefined | null): this;
267
+ override(key: string, value?: string | string[] | number | boolean | undefined | null | AxiosHeaders): this;
265
268
  with(key: string, value: string | string[] | undefined | null): HttpHeaders;
266
269
  repr(): string;
267
270
  }