@scaffoldly/rowdy 0.0.2-1-beta.20251015122625.2dde806 → 0.0.2-1-beta.20251015150326.c81b137
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 +11114 -11106
- 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;
|
|
@@ -238,9 +239,10 @@ type Image = {
|
|
|
238
239
|
};
|
|
239
240
|
declare class Api {
|
|
240
241
|
private log;
|
|
242
|
+
static readonly SLUG = "@rowdy";
|
|
241
243
|
private proxy?;
|
|
242
244
|
private axios;
|
|
243
|
-
constructor(log
|
|
245
|
+
constructor(log: Logger);
|
|
244
246
|
private routes;
|
|
245
247
|
withProxy(proxy: HttpProxy<Pipeline>): this;
|
|
246
248
|
health(): Observable<ApiSchema<Health$1['res'], ApiResponseStatus>>;
|