windmill-client 1.618.2 → 1.618.4

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.
@@ -0,0 +1,38 @@
1
+ /**
2
+ * S3 object representation, either as a URI string or a record object
3
+ */
4
+ export type S3Object = S3ObjectURI | S3ObjectRecord;
5
+ /**
6
+ * S3 object URI in the format `s3://storage/key`
7
+ */
8
+ export type S3ObjectURI = `s3://${string}/${string}`;
9
+ /**
10
+ * S3 object record with file key, optional storage identifier, and optional presigned token
11
+ */
12
+ export type S3ObjectRecord = {
13
+ /** File key/path in S3 bucket */
14
+ s3: string;
15
+ /** Storage backend identifier */
16
+ storage?: string;
17
+ /** Presigned URL query string for public access */
18
+ presigned?: string;
19
+ };
20
+ /**
21
+ * S3 client configuration settings for Deno S3 light client
22
+ */
23
+ export type DenoS3LightClientSettings = {
24
+ /** S3 endpoint URL */
25
+ endPoint: string;
26
+ /** AWS region */
27
+ region: string;
28
+ /** Bucket name */
29
+ bucket?: string;
30
+ /** Use HTTPS connection */
31
+ useSSL?: boolean;
32
+ /** AWS access key */
33
+ accessKey?: string;
34
+ /** AWS secret key */
35
+ secretKey?: string;
36
+ /** Use path-style URLs instead of virtual-hosted style */
37
+ pathStyle?: boolean;
38
+ };