@scaffoldly/rowdy 0.1.0-beta.20251126180550.a73aafd → 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 +7 -3
- package/dist/index.js +288 -162
- package/package.json +1 -1
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
|
-
|
|
58
|
-
|
|
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;
|
|
@@ -124,6 +127,7 @@ declare class Routes implements IRoutes, ILoggable {
|
|
|
124
127
|
intoDefault(): string;
|
|
125
128
|
intoPaths(): RoutePaths;
|
|
126
129
|
intoURI(path: string): URI;
|
|
130
|
+
merge(other: Routes): this;
|
|
127
131
|
health(): Promise<Health>;
|
|
128
132
|
repr(): string;
|
|
129
133
|
}
|
|
@@ -260,7 +264,7 @@ declare class HttpHeaders implements ILoggable {
|
|
|
260
264
|
intoAxios(): AxiosHeaders;
|
|
261
265
|
intoJSON(): Record<string, unknown>;
|
|
262
266
|
intoHeaders(): Headers;
|
|
263
|
-
override(key: string, value?: string | string[] | undefined | null): this;
|
|
267
|
+
override(key: string, value?: string | string[] | number | boolean | undefined | null | AxiosHeaders): this;
|
|
264
268
|
with(key: string, value: string | string[] | undefined | null): HttpHeaders;
|
|
265
269
|
repr(): string;
|
|
266
270
|
}
|