@scaffoldly/rowdy 0.0.2-1-beta.20251015155927.6580227 → 0.0.2-1-beta.20251015163349.e61c10e

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 CHANGED
@@ -190,15 +190,15 @@ type Health$1 = {
190
190
  healthy: boolean;
191
191
  };
192
192
  };
193
- type Ref<T extends string> = Partial<{
194
- mediaType: T;
193
+ type Ref = Partial<{
194
+ mediaType: string;
195
195
  size: number;
196
196
  digest: string;
197
197
  annotations: Record<string, string>;
198
198
  }>;
199
- type Config = Ref<'application/vnd.oci.image.config.v1+json'>;
200
- type Layer = Ref<'application/vnd.oci.image.layer.v1.tar+gzip' | 'application/vnd.oci.image.layer.v1.tar'>;
201
- type Manifest = Ref<'application/vnd.oci.image.manifest.v1+json'> & Partial<{
199
+ type Config = Ref;
200
+ type Layer = Ref;
201
+ type Manifest = Ref & Partial<{
202
202
  platform: Partial<{
203
203
  architecture: string;
204
204
  os: string;
@@ -206,13 +206,13 @@ type Manifest = Ref<'application/vnd.oci.image.manifest.v1+json'> & Partial<{
206
206
  }>;
207
207
  type ImageManifest = Partial<{
208
208
  schemaVersion: number;
209
- mediaType: 'application/vnd.oci.image.manifest.v1+json';
209
+ mediaType: 'application/vnd.oci.image.manifest.v1+json' | 'application/vnd.docker.distribution.manifest.v2+json';
210
210
  config: Config;
211
211
  layers: Layer[];
212
212
  }>;
213
213
  type IndexManifest = Partial<{
214
214
  schemaVersion: number;
215
- mediaType: 'application/vnd.oci.image.index.v1+json';
215
+ mediaType: 'application/vnd.oci.image.index.v1+json' | 'application/vnd.docker.distribution.manifest.list.v2+json';
216
216
  manifests: Manifest[];
217
217
  }>;
218
218
  type Image = {
@@ -231,7 +231,7 @@ type Image = {
231
231
  tags: string[];
232
232
  index: IndexManifest;
233
233
  images: Record<string, ImageManifest>;
234
- blobs: (Ref<string> & {
234
+ blobs: (Ref & {
235
235
  platform: string;
236
236
  url: string;
237
237
  })[];