@elaraai/east-node-io 0.0.1-beta.15 → 0.0.1-beta.17

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.
@@ -69,13 +69,13 @@ import { StringType } from './types.js';
69
69
  * - Connections are automatically returned to the pool after queries
70
70
  */
71
71
  export declare const mysql_connect: import("@elaraai/east").AsyncPlatformDefinition<[import("@elaraai/east").StructType<{
72
- host: EastStringType;
73
- port: IntegerType;
74
- database: EastStringType;
75
- user: EastStringType;
76
- password: EastStringType;
77
- ssl: import("@elaraai/east").OptionType<BooleanType>;
78
- maxConnections: import("@elaraai/east").OptionType<IntegerType>;
72
+ readonly host: EastStringType;
73
+ readonly port: IntegerType;
74
+ readonly database: EastStringType;
75
+ readonly user: EastStringType;
76
+ readonly password: EastStringType;
77
+ readonly ssl: import("@elaraai/east").OptionType<BooleanType>;
78
+ readonly maxConnections: import("@elaraai/east").OptionType<IntegerType>;
79
79
  }>], EastStringType>;
80
80
  /**
81
81
  * Executes a SQL query with parameterized values.
@@ -136,34 +136,34 @@ export declare const mysql_connect: import("@elaraai/east").AsyncPlatformDefinit
136
136
  * - Returns lastInsertId for INSERT operations
137
137
  */
138
138
  export declare const mysql_query: import("@elaraai/east").AsyncPlatformDefinition<[EastStringType, EastStringType, import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
139
- Null: NullType;
140
- Boolean: BooleanType;
141
- Integer: IntegerType;
142
- Float: FloatType;
143
- String: StringType;
144
- DateTime: DateTimeType;
145
- Blob: BlobType;
139
+ readonly Null: NullType;
140
+ readonly Boolean: BooleanType;
141
+ readonly Integer: IntegerType;
142
+ readonly Float: FloatType;
143
+ readonly String: StringType;
144
+ readonly DateTime: DateTimeType;
145
+ readonly Blob: BlobType;
146
146
  }>>], import("@elaraai/east").VariantType<{
147
- select: import("@elaraai/east").StructType<{
148
- rows: import("@elaraai/east").ArrayType<import("@elaraai/east").DictType<EastStringType, import("@elaraai/east").VariantType<{
149
- Null: NullType;
150
- Boolean: BooleanType;
151
- Integer: IntegerType;
152
- Float: FloatType;
153
- String: StringType;
154
- DateTime: DateTimeType;
155
- Blob: BlobType;
147
+ readonly select: import("@elaraai/east").StructType<{
148
+ readonly rows: import("@elaraai/east").ArrayType<import("@elaraai/east").DictType<EastStringType, import("@elaraai/east").VariantType<{
149
+ readonly Null: NullType;
150
+ readonly Boolean: BooleanType;
151
+ readonly Integer: IntegerType;
152
+ readonly Float: FloatType;
153
+ readonly String: StringType;
154
+ readonly DateTime: DateTimeType;
155
+ readonly Blob: BlobType;
156
156
  }>>>;
157
157
  }>;
158
- insert: import("@elaraai/east").StructType<{
159
- rowsAffected: IntegerType;
160
- lastInsertId: import("@elaraai/east").OptionType<IntegerType>;
158
+ readonly insert: import("@elaraai/east").StructType<{
159
+ readonly rowsAffected: IntegerType;
160
+ readonly lastInsertId: import("@elaraai/east").OptionType<IntegerType>;
161
161
  }>;
162
- update: import("@elaraai/east").StructType<{
163
- rowsAffected: IntegerType;
162
+ readonly update: import("@elaraai/east").StructType<{
163
+ readonly rowsAffected: IntegerType;
164
164
  }>;
165
- delete: import("@elaraai/east").StructType<{
166
- rowsAffected: IntegerType;
165
+ readonly delete: import("@elaraai/east").StructType<{
166
+ readonly rowsAffected: IntegerType;
167
167
  }>;
168
168
  }>>;
169
169
  /**
@@ -69,13 +69,13 @@ import { StringType } from './types.js';
69
69
  * - Connections are automatically returned to the pool after queries
70
70
  */
71
71
  export declare const postgres_connect: import("@elaraai/east").AsyncPlatformDefinition<[import("@elaraai/east").StructType<{
72
- host: EastStringType;
73
- port: IntegerType;
74
- database: EastStringType;
75
- user: EastStringType;
76
- password: EastStringType;
77
- ssl: import("@elaraai/east").OptionType<BooleanType>;
78
- maxConnections: import("@elaraai/east").OptionType<IntegerType>;
72
+ readonly host: EastStringType;
73
+ readonly port: IntegerType;
74
+ readonly database: EastStringType;
75
+ readonly user: EastStringType;
76
+ readonly password: EastStringType;
77
+ readonly ssl: import("@elaraai/east").OptionType<BooleanType>;
78
+ readonly maxConnections: import("@elaraai/east").OptionType<IntegerType>;
79
79
  }>], EastStringType>;
80
80
  /**
81
81
  * Executes a SQL query with parameterized values.
@@ -135,34 +135,34 @@ export declare const postgres_connect: import("@elaraai/east").AsyncPlatformDefi
135
135
  * - Parameters prevent SQL injection attacks
136
136
  */
137
137
  export declare const postgres_query: import("@elaraai/east").AsyncPlatformDefinition<[EastStringType, EastStringType, import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
138
- Null: NullType;
139
- Boolean: BooleanType;
140
- Integer: IntegerType;
141
- Float: FloatType;
142
- String: StringType;
143
- DateTime: DateTimeType;
144
- Blob: BlobType;
138
+ readonly Null: NullType;
139
+ readonly Boolean: BooleanType;
140
+ readonly Integer: IntegerType;
141
+ readonly Float: FloatType;
142
+ readonly String: StringType;
143
+ readonly DateTime: DateTimeType;
144
+ readonly Blob: BlobType;
145
145
  }>>], import("@elaraai/east").VariantType<{
146
- select: import("@elaraai/east").StructType<{
147
- rows: import("@elaraai/east").ArrayType<import("@elaraai/east").DictType<EastStringType, import("@elaraai/east").VariantType<{
148
- Null: NullType;
149
- Boolean: BooleanType;
150
- Integer: IntegerType;
151
- Float: FloatType;
152
- String: StringType;
153
- DateTime: DateTimeType;
154
- Blob: BlobType;
146
+ readonly select: import("@elaraai/east").StructType<{
147
+ readonly rows: import("@elaraai/east").ArrayType<import("@elaraai/east").DictType<EastStringType, import("@elaraai/east").VariantType<{
148
+ readonly Null: NullType;
149
+ readonly Boolean: BooleanType;
150
+ readonly Integer: IntegerType;
151
+ readonly Float: FloatType;
152
+ readonly String: StringType;
153
+ readonly DateTime: DateTimeType;
154
+ readonly Blob: BlobType;
155
155
  }>>>;
156
156
  }>;
157
- insert: import("@elaraai/east").StructType<{
158
- rowsAffected: IntegerType;
159
- lastInsertId: import("@elaraai/east").OptionType<IntegerType>;
157
+ readonly insert: import("@elaraai/east").StructType<{
158
+ readonly rowsAffected: IntegerType;
159
+ readonly lastInsertId: import("@elaraai/east").OptionType<IntegerType>;
160
160
  }>;
161
- update: import("@elaraai/east").StructType<{
162
- rowsAffected: IntegerType;
161
+ readonly update: import("@elaraai/east").StructType<{
162
+ readonly rowsAffected: IntegerType;
163
163
  }>;
164
- delete: import("@elaraai/east").StructType<{
165
- rowsAffected: IntegerType;
164
+ readonly delete: import("@elaraai/east").StructType<{
165
+ readonly rowsAffected: IntegerType;
166
166
  }>;
167
167
  }>>;
168
168
  /**
@@ -63,9 +63,9 @@ import { StringType } from './types.js';
63
63
  * - All queries are synchronous but wrapped in async for consistency
64
64
  */
65
65
  export declare const sqlite_connect: import("@elaraai/east").AsyncPlatformDefinition<[import("@elaraai/east").StructType<{
66
- path: StringType;
67
- readOnly: import("@elaraai/east").OptionType<BooleanType>;
68
- memory: import("@elaraai/east").OptionType<BooleanType>;
66
+ readonly path: StringType;
67
+ readonly readOnly: import("@elaraai/east").OptionType<BooleanType>;
68
+ readonly memory: import("@elaraai/east").OptionType<BooleanType>;
69
69
  }>], StringType>;
70
70
  /**
71
71
  * Executes a SQL query with parameterized values.
@@ -119,34 +119,34 @@ export declare const sqlite_connect: import("@elaraai/east").AsyncPlatformDefini
119
119
  * - All queries are synchronous but wrapped in async for consistency
120
120
  */
121
121
  export declare const sqlite_query: import("@elaraai/east").AsyncPlatformDefinition<[StringType, StringType, import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
122
- Null: NullType;
123
- Boolean: BooleanType;
124
- Integer: IntegerType;
125
- Float: FloatType;
126
- String: StringType;
127
- DateTime: DateTimeType;
128
- Blob: BlobType;
122
+ readonly Null: NullType;
123
+ readonly Boolean: BooleanType;
124
+ readonly Integer: IntegerType;
125
+ readonly Float: FloatType;
126
+ readonly String: StringType;
127
+ readonly DateTime: DateTimeType;
128
+ readonly Blob: BlobType;
129
129
  }>>], import("@elaraai/east").VariantType<{
130
- select: import("@elaraai/east").StructType<{
131
- rows: import("@elaraai/east").ArrayType<import("@elaraai/east").DictType<StringType, import("@elaraai/east").VariantType<{
132
- Null: NullType;
133
- Boolean: BooleanType;
134
- Integer: IntegerType;
135
- Float: FloatType;
136
- String: StringType;
137
- DateTime: DateTimeType;
138
- Blob: BlobType;
130
+ readonly select: import("@elaraai/east").StructType<{
131
+ readonly rows: import("@elaraai/east").ArrayType<import("@elaraai/east").DictType<StringType, import("@elaraai/east").VariantType<{
132
+ readonly Null: NullType;
133
+ readonly Boolean: BooleanType;
134
+ readonly Integer: IntegerType;
135
+ readonly Float: FloatType;
136
+ readonly String: StringType;
137
+ readonly DateTime: DateTimeType;
138
+ readonly Blob: BlobType;
139
139
  }>>>;
140
140
  }>;
141
- insert: import("@elaraai/east").StructType<{
142
- rowsAffected: IntegerType;
143
- lastInsertId: import("@elaraai/east").OptionType<IntegerType>;
141
+ readonly insert: import("@elaraai/east").StructType<{
142
+ readonly rowsAffected: IntegerType;
143
+ readonly lastInsertId: import("@elaraai/east").OptionType<IntegerType>;
144
144
  }>;
145
- update: import("@elaraai/east").StructType<{
146
- rowsAffected: IntegerType;
145
+ readonly update: import("@elaraai/east").StructType<{
146
+ readonly rowsAffected: IntegerType;
147
147
  }>;
148
- delete: import("@elaraai/east").StructType<{
149
- rowsAffected: IntegerType;
148
+ readonly delete: import("@elaraai/east").StructType<{
149
+ readonly rowsAffected: IntegerType;
150
150
  }>;
151
151
  }>>;
152
152
  /**
@@ -22,17 +22,17 @@ export declare const SqliteConfigType: StructType<{
22
22
  * Path to the SQLite database file.
23
23
  * Use ":memory:" for in-memory database.
24
24
  */
25
- path: StringType;
25
+ readonly path: StringType;
26
26
  /**
27
27
  * Open database in read-only mode.
28
28
  * Optional, defaults to false (read-write).
29
29
  */
30
- readOnly: OptionType<BooleanType>;
30
+ readonly readOnly: OptionType<BooleanType>;
31
31
  /**
32
32
  * Use in-memory database.
33
33
  * Optional, defaults to false.
34
34
  */
35
- memory: OptionType<BooleanType>;
35
+ readonly memory: OptionType<BooleanType>;
36
36
  }>;
37
37
  /**
38
38
  * PostgreSQL database connection configuration.
@@ -41,25 +41,25 @@ export declare const SqliteConfigType: StructType<{
41
41
  */
42
42
  export declare const PostgresConfigType: StructType<{
43
43
  /** PostgreSQL server hostname or IP address */
44
- host: StringType;
44
+ readonly host: StringType;
45
45
  /** PostgreSQL server port (typically 5432) */
46
- port: IntegerType;
46
+ readonly port: IntegerType;
47
47
  /** Database name to connect to */
48
- database: StringType;
48
+ readonly database: StringType;
49
49
  /** Username for authentication */
50
- user: StringType;
50
+ readonly user: StringType;
51
51
  /** Password for authentication */
52
- password: StringType;
52
+ readonly password: StringType;
53
53
  /**
54
54
  * Enable SSL/TLS connection.
55
55
  * Optional, defaults to false.
56
56
  */
57
- ssl: OptionType<BooleanType>;
57
+ readonly ssl: OptionType<BooleanType>;
58
58
  /**
59
59
  * Maximum number of connections in the pool.
60
60
  * Optional, defaults to 10.
61
61
  */
62
- maxConnections: OptionType<IntegerType>;
62
+ readonly maxConnections: OptionType<IntegerType>;
63
63
  }>;
64
64
  /**
65
65
  * MySQL database connection configuration.
@@ -68,25 +68,25 @@ export declare const PostgresConfigType: StructType<{
68
68
  */
69
69
  export declare const MySqlConfigType: StructType<{
70
70
  /** MySQL server hostname or IP address */
71
- host: StringType;
71
+ readonly host: StringType;
72
72
  /** MySQL server port (typically 3306) */
73
- port: IntegerType;
73
+ readonly port: IntegerType;
74
74
  /** Database name to connect to */
75
- database: StringType;
75
+ readonly database: StringType;
76
76
  /** Username for authentication */
77
- user: StringType;
77
+ readonly user: StringType;
78
78
  /** Password for authentication */
79
- password: StringType;
79
+ readonly password: StringType;
80
80
  /**
81
81
  * Enable SSL/TLS connection.
82
82
  * Optional, defaults to false.
83
83
  */
84
- ssl: OptionType<BooleanType>;
84
+ readonly ssl: OptionType<BooleanType>;
85
85
  /**
86
86
  * Maximum number of connections in the pool.
87
87
  * Optional, defaults to 10.
88
88
  */
89
- maxConnections: OptionType<IntegerType>;
89
+ readonly maxConnections: OptionType<IntegerType>;
90
90
  }>;
91
91
  /**
92
92
  * SQL query parameter value type.
@@ -104,13 +104,13 @@ export declare const MySqlConfigType: StructType<{
104
104
  * - `East.variant("blob", new Uint8Array([1, 2, 3]))`
105
105
  */
106
106
  export declare const SqlParameterType: VariantType<{
107
- Null: import("@elaraai/east").NullType;
108
- Boolean: BooleanType;
109
- Integer: IntegerType;
110
- Float: import("@elaraai/east").FloatType;
111
- String: StringType;
112
- DateTime: import("@elaraai/east").DateTimeType;
113
- Blob: import("@elaraai/east").BlobType;
107
+ readonly Null: import("@elaraai/east").NullType;
108
+ readonly Boolean: BooleanType;
109
+ readonly Integer: IntegerType;
110
+ readonly Float: import("@elaraai/east").FloatType;
111
+ readonly String: StringType;
112
+ readonly DateTime: import("@elaraai/east").DateTimeType;
113
+ readonly Blob: import("@elaraai/east").BlobType;
114
114
  }>;
115
115
  /**
116
116
  * Array of SQL query parameters.
@@ -118,13 +118,13 @@ export declare const SqlParameterType: VariantType<{
118
118
  * Used to pass parameters to parameterized SQL queries.
119
119
  */
120
120
  export declare const SqlParametersType: ArrayType<VariantType<{
121
- Null: import("@elaraai/east").NullType;
122
- Boolean: BooleanType;
123
- Integer: IntegerType;
124
- Float: import("@elaraai/east").FloatType;
125
- String: StringType;
126
- DateTime: import("@elaraai/east").DateTimeType;
127
- Blob: import("@elaraai/east").BlobType;
121
+ readonly Null: import("@elaraai/east").NullType;
122
+ readonly Boolean: BooleanType;
123
+ readonly Integer: IntegerType;
124
+ readonly Float: import("@elaraai/east").FloatType;
125
+ readonly String: StringType;
126
+ readonly DateTime: import("@elaraai/east").DateTimeType;
127
+ readonly Blob: import("@elaraai/east").BlobType;
128
128
  }>>;
129
129
  /**
130
130
  * SQL query result row.
@@ -133,13 +133,13 @@ export declare const SqlParametersType: ArrayType<VariantType<{
133
133
  * column names to typed values.
134
134
  */
135
135
  export declare const SqlRowType: DictType<StringType, VariantType<{
136
- Null: import("@elaraai/east").NullType;
137
- Boolean: BooleanType;
138
- Integer: IntegerType;
139
- Float: import("@elaraai/east").FloatType;
140
- String: StringType;
141
- DateTime: import("@elaraai/east").DateTimeType;
142
- Blob: import("@elaraai/east").BlobType;
136
+ readonly Null: import("@elaraai/east").NullType;
137
+ readonly Boolean: BooleanType;
138
+ readonly Integer: IntegerType;
139
+ readonly Float: import("@elaraai/east").FloatType;
140
+ readonly String: StringType;
141
+ readonly DateTime: import("@elaraai/east").DateTimeType;
142
+ readonly Blob: import("@elaraai/east").BlobType;
143
143
  }>>;
144
144
  /**
145
145
  * SQL query execution result.
@@ -157,40 +157,40 @@ export declare const SqlResultType: VariantType<{
157
157
  /**
158
158
  * SELECT query result with rows.
159
159
  */
160
- select: StructType<{
160
+ readonly select: StructType<{
161
161
  /** Array of rows returned by the query */
162
- rows: ArrayType<DictType<StringType, VariantType<{
163
- Null: import("@elaraai/east").NullType;
164
- Boolean: BooleanType;
165
- Integer: IntegerType;
166
- Float: import("@elaraai/east").FloatType;
167
- String: StringType;
168
- DateTime: import("@elaraai/east").DateTimeType;
169
- Blob: import("@elaraai/east").BlobType;
162
+ readonly rows: ArrayType<DictType<StringType, VariantType<{
163
+ readonly Null: import("@elaraai/east").NullType;
164
+ readonly Boolean: BooleanType;
165
+ readonly Integer: IntegerType;
166
+ readonly Float: import("@elaraai/east").FloatType;
167
+ readonly String: StringType;
168
+ readonly DateTime: import("@elaraai/east").DateTimeType;
169
+ readonly Blob: import("@elaraai/east").BlobType;
170
170
  }>>>;
171
171
  }>;
172
172
  /**
173
173
  * INSERT query result with metadata.
174
174
  */
175
- insert: StructType<{
175
+ readonly insert: StructType<{
176
176
  /** Number of rows inserted */
177
- rowsAffected: IntegerType;
177
+ readonly rowsAffected: IntegerType;
178
178
  /** Last inserted row ID (database-specific, may be None) */
179
- lastInsertId: OptionType<IntegerType>;
179
+ readonly lastInsertId: OptionType<IntegerType>;
180
180
  }>;
181
181
  /**
182
182
  * UPDATE query result with metadata.
183
183
  */
184
- update: StructType<{
184
+ readonly update: StructType<{
185
185
  /** Number of rows updated */
186
- rowsAffected: IntegerType;
186
+ readonly rowsAffected: IntegerType;
187
187
  }>;
188
188
  /**
189
189
  * DELETE query result with metadata.
190
190
  */
191
- delete: StructType<{
191
+ readonly delete: StructType<{
192
192
  /** Number of rows deleted */
193
- rowsAffected: IntegerType;
193
+ readonly rowsAffected: IntegerType;
194
194
  }>;
195
195
  }>;
196
196
  /**
@@ -76,11 +76,11 @@ export declare const Storage: {
76
76
  * ```
77
77
  */
78
78
  readonly putObject: import("@elaraai/east").AsyncPlatformDefinition<[import("@elaraai/east").StructType<{
79
- region: import("@elaraai/east").StringType;
80
- bucket: import("@elaraai/east").StringType;
81
- accessKeyId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
82
- secretAccessKey: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
83
- endpoint: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
79
+ readonly region: import("@elaraai/east").StringType;
80
+ readonly bucket: import("@elaraai/east").StringType;
81
+ readonly accessKeyId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
82
+ readonly secretAccessKey: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
83
+ readonly endpoint: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
84
84
  }>, import("@elaraai/east").StringType, import("@elaraai/east").BlobType], import("@elaraai/east").NullType>;
85
85
  /**
86
86
  * Downloads an object from S3.
@@ -107,11 +107,11 @@ export declare const Storage: {
107
107
  * ```
108
108
  */
109
109
  readonly getObject: import("@elaraai/east").AsyncPlatformDefinition<[import("@elaraai/east").StructType<{
110
- region: import("@elaraai/east").StringType;
111
- bucket: import("@elaraai/east").StringType;
112
- accessKeyId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
113
- secretAccessKey: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
114
- endpoint: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
110
+ readonly region: import("@elaraai/east").StringType;
111
+ readonly bucket: import("@elaraai/east").StringType;
112
+ readonly accessKeyId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
113
+ readonly secretAccessKey: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
114
+ readonly endpoint: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
115
115
  }>, import("@elaraai/east").StringType], import("@elaraai/east").BlobType>;
116
116
  /**
117
117
  * Retrieves object metadata without downloading.
@@ -139,17 +139,17 @@ export declare const Storage: {
139
139
  * ```
140
140
  */
141
141
  readonly headObject: import("@elaraai/east").AsyncPlatformDefinition<[import("@elaraai/east").StructType<{
142
- region: import("@elaraai/east").StringType;
143
- bucket: import("@elaraai/east").StringType;
144
- accessKeyId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
145
- secretAccessKey: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
146
- endpoint: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
142
+ readonly region: import("@elaraai/east").StringType;
143
+ readonly bucket: import("@elaraai/east").StringType;
144
+ readonly accessKeyId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
145
+ readonly secretAccessKey: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
146
+ readonly endpoint: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
147
147
  }>, import("@elaraai/east").StringType], import("@elaraai/east").StructType<{
148
- key: import("@elaraai/east").StringType;
149
- size: import("@elaraai/east").IntegerType;
150
- lastModified: import("@elaraai/east").DateTimeType;
151
- contentType: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
152
- etag: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
148
+ readonly key: import("@elaraai/east").StringType;
149
+ readonly size: import("@elaraai/east").IntegerType;
150
+ readonly lastModified: import("@elaraai/east").DateTimeType;
151
+ readonly contentType: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
152
+ readonly etag: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
153
153
  }>>;
154
154
  /**
155
155
  * Deletes an object from S3.
@@ -176,11 +176,11 @@ export declare const Storage: {
176
176
  * ```
177
177
  */
178
178
  readonly deleteObject: import("@elaraai/east").AsyncPlatformDefinition<[import("@elaraai/east").StructType<{
179
- region: import("@elaraai/east").StringType;
180
- bucket: import("@elaraai/east").StringType;
181
- accessKeyId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
182
- secretAccessKey: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
183
- endpoint: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
179
+ readonly region: import("@elaraai/east").StringType;
180
+ readonly bucket: import("@elaraai/east").StringType;
181
+ readonly accessKeyId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
182
+ readonly secretAccessKey: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
183
+ readonly endpoint: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
184
184
  }>, import("@elaraai/east").StringType], import("@elaraai/east").NullType>;
185
185
  /**
186
186
  * Lists objects in an S3 bucket with a prefix.
@@ -207,21 +207,21 @@ export declare const Storage: {
207
207
  * ```
208
208
  */
209
209
  readonly listObjects: import("@elaraai/east").AsyncPlatformDefinition<[import("@elaraai/east").StructType<{
210
- region: import("@elaraai/east").StringType;
211
- bucket: import("@elaraai/east").StringType;
212
- accessKeyId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
213
- secretAccessKey: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
214
- endpoint: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
210
+ readonly region: import("@elaraai/east").StringType;
211
+ readonly bucket: import("@elaraai/east").StringType;
212
+ readonly accessKeyId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
213
+ readonly secretAccessKey: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
214
+ readonly endpoint: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
215
215
  }>, import("@elaraai/east").StringType, import("@elaraai/east").IntegerType], import("@elaraai/east").StructType<{
216
- objects: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
217
- key: import("@elaraai/east").StringType;
218
- size: import("@elaraai/east").IntegerType;
219
- lastModified: import("@elaraai/east").DateTimeType;
220
- contentType: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
221
- etag: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
216
+ readonly objects: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
217
+ readonly key: import("@elaraai/east").StringType;
218
+ readonly size: import("@elaraai/east").IntegerType;
219
+ readonly lastModified: import("@elaraai/east").DateTimeType;
220
+ readonly contentType: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
221
+ readonly etag: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
222
222
  }>>;
223
- isTruncated: import("@elaraai/east").BooleanType;
224
- continuationToken: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
223
+ readonly isTruncated: import("@elaraai/east").BooleanType;
224
+ readonly continuationToken: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
225
225
  }>>;
226
226
  /**
227
227
  * Generates a presigned URL for temporary access to an S3 object.
@@ -248,11 +248,11 @@ export declare const Storage: {
248
248
  * ```
249
249
  */
250
250
  readonly presignUrl: import("@elaraai/east").AsyncPlatformDefinition<[import("@elaraai/east").StructType<{
251
- region: import("@elaraai/east").StringType;
252
- bucket: import("@elaraai/east").StringType;
253
- accessKeyId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
254
- secretAccessKey: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
255
- endpoint: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
251
+ readonly region: import("@elaraai/east").StringType;
252
+ readonly bucket: import("@elaraai/east").StringType;
253
+ readonly accessKeyId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
254
+ readonly secretAccessKey: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
255
+ readonly endpoint: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
256
256
  }>, import("@elaraai/east").StringType, import("@elaraai/east").IntegerType], import("@elaraai/east").StringType>;
257
257
  /**
258
258
  * Node.js implementation of S3 platform functions.
@@ -268,35 +268,35 @@ export declare const Storage: {
268
268
  * S3 connection configuration type.
269
269
  */
270
270
  readonly Config: import("@elaraai/east").StructType<{
271
- region: import("@elaraai/east").StringType;
272
- bucket: import("@elaraai/east").StringType;
273
- accessKeyId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
274
- secretAccessKey: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
275
- endpoint: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
271
+ readonly region: import("@elaraai/east").StringType;
272
+ readonly bucket: import("@elaraai/east").StringType;
273
+ readonly accessKeyId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
274
+ readonly secretAccessKey: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
275
+ readonly endpoint: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
276
276
  }>;
277
277
  /**
278
278
  * S3 object metadata type.
279
279
  */
280
280
  readonly ObjectMetadata: import("@elaraai/east").StructType<{
281
- key: import("@elaraai/east").StringType;
282
- size: import("@elaraai/east").IntegerType;
283
- lastModified: import("@elaraai/east").DateTimeType;
284
- contentType: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
285
- etag: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
281
+ readonly key: import("@elaraai/east").StringType;
282
+ readonly size: import("@elaraai/east").IntegerType;
283
+ readonly lastModified: import("@elaraai/east").DateTimeType;
284
+ readonly contentType: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
285
+ readonly etag: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
286
286
  }>;
287
287
  /**
288
288
  * S3 list objects result type.
289
289
  */
290
290
  readonly ListResult: import("@elaraai/east").StructType<{
291
- objects: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
292
- key: import("@elaraai/east").StringType;
293
- size: import("@elaraai/east").IntegerType;
294
- lastModified: import("@elaraai/east").DateTimeType;
295
- contentType: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
296
- etag: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
291
+ readonly objects: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
292
+ readonly key: import("@elaraai/east").StringType;
293
+ readonly size: import("@elaraai/east").IntegerType;
294
+ readonly lastModified: import("@elaraai/east").DateTimeType;
295
+ readonly contentType: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
296
+ readonly etag: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
297
297
  }>>;
298
- isTruncated: import("@elaraai/east").BooleanType;
299
- continuationToken: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
298
+ readonly isTruncated: import("@elaraai/east").BooleanType;
299
+ readonly continuationToken: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
300
300
  }>;
301
301
  };
302
302
  };