@scaffoldly/rowdy 0.0.2-1-beta.20251021140332.f9cefed → 0.0.2-1-beta.20251024193300.3cd7b6b
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 -3
- package/dist/index.js +476 -218
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -155,7 +155,7 @@ type ApiResponseStatus = {
|
|
|
155
155
|
headers?: {
|
|
156
156
|
[key: string]: string | string[];
|
|
157
157
|
};
|
|
158
|
-
reason?: string;
|
|
158
|
+
reason?: string | undefined;
|
|
159
159
|
};
|
|
160
160
|
type Health$1 = {
|
|
161
161
|
kind: 'Health';
|
|
@@ -217,12 +217,12 @@ type Image = {
|
|
|
217
217
|
os: string;
|
|
218
218
|
}>;
|
|
219
219
|
}>;
|
|
220
|
-
ImageIndex: Partial<{
|
|
220
|
+
ImageIndex: Image['External']['Ref'] & Partial<{
|
|
221
221
|
schemaVersion: number;
|
|
222
222
|
mediaType: 'application/vnd.oci.image.index.v1+json' | 'application/vnd.docker.distribution.manifest.list.v2+json';
|
|
223
223
|
manifests: Image['External']['Manifest'][];
|
|
224
224
|
}>;
|
|
225
|
-
ImageManifest: Partial<{
|
|
225
|
+
ImageManifest: Image['External']['Manifest'] & Partial<{
|
|
226
226
|
schemaVersion: number;
|
|
227
227
|
mediaType: 'application/vnd.oci.image.manifest.v1+json' | 'application/vnd.docker.distribution.manifest.v2+json';
|
|
228
228
|
config: Image['External']['Config'];
|