@scaffoldly/rowdy 0.0.2-1-beta.20251015120925.faf3b02 → 0.0.2-1-beta.20251015132125.0f95d07
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 +4 -2
- package/dist/index.js +13 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ type CheckResult = {
|
|
|
36
36
|
|
|
37
37
|
type Secrets = Record<string, string>;
|
|
38
38
|
declare class Environment implements ILoggable {
|
|
39
|
-
|
|
39
|
+
readonly log: Logger;
|
|
40
40
|
abort: AbortController;
|
|
41
41
|
readonly signal: AbortSignal;
|
|
42
42
|
readonly bin: string | undefined;
|
|
@@ -59,6 +59,7 @@ declare abstract class Pipeline implements ILoggable {
|
|
|
59
59
|
protected readonly environment: Environment;
|
|
60
60
|
private _createdAt;
|
|
61
61
|
constructor(environment: Environment);
|
|
62
|
+
get log(): Logger;
|
|
62
63
|
get env(): Record<string, string | undefined>;
|
|
63
64
|
get signal(): AbortSignal;
|
|
64
65
|
get routes(): Routes;
|
|
@@ -193,6 +194,7 @@ type Ref<T extends string> = Partial<{
|
|
|
193
194
|
mediaType: T;
|
|
194
195
|
size: number;
|
|
195
196
|
digest: string;
|
|
197
|
+
annotations: Record<string, string>;
|
|
196
198
|
}>;
|
|
197
199
|
type Config = Ref<'application/vnd.oci.image.config.v1+json'>;
|
|
198
200
|
type Layer = Ref<'application/vnd.oci.image.layer.v1.tar+gzip' | 'application/vnd.oci.image.layer.v1.tar'>;
|
|
@@ -239,7 +241,7 @@ declare class Api {
|
|
|
239
241
|
private log;
|
|
240
242
|
private proxy?;
|
|
241
243
|
private axios;
|
|
242
|
-
constructor(log
|
|
244
|
+
constructor(log: Logger);
|
|
243
245
|
private routes;
|
|
244
246
|
withProxy(proxy: HttpProxy<Pipeline>): this;
|
|
245
247
|
health(): Observable<ApiSchema<Health$1['res'], ApiResponseStatus>>;
|