@scaffoldly/rowdy 0.0.2-1-beta.20251015122625.2dde806 → 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 +3 -2
- package/dist/index.js +8 -5
- 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;
|
|
@@ -240,7 +241,7 @@ declare class Api {
|
|
|
240
241
|
private log;
|
|
241
242
|
private proxy?;
|
|
242
243
|
private axios;
|
|
243
|
-
constructor(log
|
|
244
|
+
constructor(log: Logger);
|
|
244
245
|
private routes;
|
|
245
246
|
withProxy(proxy: HttpProxy<Pipeline>): this;
|
|
246
247
|
health(): Observable<ApiSchema<Health$1['res'], ApiResponseStatus>>;
|