@idetik/core 0.20.1 → 0.20.3

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
@@ -242,7 +242,7 @@ declare class TrsTransform {
242
242
  private computeMatrix;
243
243
  }
244
244
 
245
- type Shader = "floatScalarImage" | "floatScalarImageArray" | "floatVolume" | "intScalarImage" | "intScalarImageArray" | "intVolume" | "labelImage" | "points" | "projectedLine" | "uintScalarImage" | "uintScalarImageArray" | "uintVolume" | "wireframe";
245
+ type Shader = "floatScalarImage" | "floatVolume" | "intScalarImage" | "intVolume" | "labelImage" | "points" | "projectedLine" | "uintScalarImage" | "uintVolume" | "wireframe";
246
246
 
247
247
  type ColorLike = Color | vec3 | vec4 | string;
248
248
  declare class Color {
@@ -1210,19 +1210,6 @@ declare const Image$1: z.ZodObject<{
1210
1210
  }>;
1211
1211
  type Image$1 = z.infer<typeof Image$1>;
1212
1212
 
1213
- type AwsCredentials = {
1214
- accessKeyId: string;
1215
- secretAccessKey: string;
1216
- sessionToken?: string;
1217
- };
1218
- type S3FetchStoreProps = {
1219
- url: string;
1220
- region?: string;
1221
- credentials?: AwsCredentials;
1222
- overrides?: RequestInit;
1223
- useSuffixRequest?: boolean;
1224
- };
1225
-
1226
1213
  type Version$1 = "v2" | "v3";
1227
1214
  type ZarrArrayParams = {
1228
1215
  arrayPath: string;
@@ -1230,9 +1217,7 @@ type ZarrArrayParams = {
1230
1217
  } & ({
1231
1218
  type: "fetch";
1232
1219
  url: string;
1233
- } | ({
1234
- type: "s3";
1235
- } & S3FetchStoreProps) | {
1220
+ } | {
1236
1221
  type: "filesystem";
1237
1222
  directoryHandle: FileSystemDirectoryHandle;
1238
1223
  path: string;
@@ -1568,9 +1553,6 @@ type HttpOmeZarrImageSourceProps = {
1568
1553
  url: string;
1569
1554
  version?: Version;
1570
1555
  };
1571
- type S3OmeZarrImageSourceProps = S3FetchStoreProps & {
1572
- version?: Version;
1573
- };
1574
1556
  type FileSystemOmeZarrImageSourceProps = {
1575
1557
  directory: FileSystemDirectoryHandle;
1576
1558
  version?: Version;
@@ -1589,17 +1571,6 @@ declare class OmeZarrImageSource {
1589
1571
  * @param version OME-Zarr version
1590
1572
  */
1591
1573
  static fromHttp(props: HttpOmeZarrImageSourceProps): OmeZarrImageSource;
1592
- /**
1593
- * Creates an OmeZarrImageSource from an S3 HTTP(S) URL.
1594
- *
1595
- * @param url URL of Zarr root
1596
- * @param version OME-Zarr version
1597
- * @param credentials AWS credentials for S3 authentication (will generate signatures per-request)
1598
- * @param region AWS region for S3 bucket (e.g., 'us-east-1')
1599
- * @param overrides RequestInit overrides to customize fetch behavior (e.g., custom headers for S3 authentication)
1600
- * @param useSuffixRequest Whether to use suffix requests for range queries
1601
- */
1602
- static fromS3(props: S3OmeZarrImageSourceProps): OmeZarrImageSource;
1603
1574
  /**
1604
1575
  * Creates an OmeZarrImageSource from a local filesystem directory.
1605
1576
  *