@scaffoldly/rowdy 0.0.2-1-beta.20251028030356.16a84be → 0.0.2-1-beta.20251028093554.1e9f7b2
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 -10
- package/dist/index.js +71 -69
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -351,16 +351,13 @@ declare class Rowdy {
|
|
|
351
351
|
readonly log: Logger;
|
|
352
352
|
readonly signal: AbortSignal;
|
|
353
353
|
static readonly SLUG = "@rowdy";
|
|
354
|
-
static readonly
|
|
355
|
-
static readonly
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
PING: string;
|
|
362
|
-
ROUTES: string;
|
|
363
|
-
};
|
|
354
|
+
static readonly ERROR = "error";
|
|
355
|
+
static readonly HTTP = "http";
|
|
356
|
+
static readonly API = "api";
|
|
357
|
+
static readonly CRI = "cri";
|
|
358
|
+
static readonly HEALTH = "health";
|
|
359
|
+
static readonly PING = "ping";
|
|
360
|
+
static readonly ROUTES = "routes";
|
|
364
361
|
readonly http: AxiosInstance;
|
|
365
362
|
private _images;
|
|
366
363
|
private _registry;
|