@elaraai/east-node-io 0.0.1-beta.16 → 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.
@@ -58,7 +58,7 @@ import type { PlatformFunction } from "@elaraai/east/internal";
58
58
  * - All operations are asynchronous (use East.compileAsync)
59
59
  */
60
60
  export declare const gzip_compress: import("@elaraai/east").AsyncPlatformDefinition<[BlobType, import("@elaraai/east").StructType<{
61
- level: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
61
+ readonly level: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
62
62
  }>], BlobType>;
63
63
  /**
64
64
  * Decompresses gzip-compressed data.
@@ -88,7 +88,7 @@ export declare const Compression: {
88
88
  * ```
89
89
  */
90
90
  readonly compress: import("@elaraai/east").AsyncPlatformDefinition<[import("@elaraai/east").BlobType, import("@elaraai/east").StructType<{
91
- level: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
91
+ readonly level: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
92
92
  }>], import("@elaraai/east").BlobType>;
93
93
  /**
94
94
  * Decompresses gzip-compressed data.
@@ -127,7 +127,7 @@ export declare const Compression: {
127
127
  * Gzip compression options.
128
128
  */
129
129
  readonly Options: import("@elaraai/east").StructType<{
130
- level: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
130
+ readonly level: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
131
131
  }>;
132
132
  };
133
133
  };
@@ -162,10 +162,10 @@ export declare const Compression: {
162
162
  * ```
163
163
  */
164
164
  readonly compress: import("@elaraai/east").PlatformDefinition<[import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
165
- name: import("@elaraai/east").StringType;
166
- data: import("@elaraai/east").BlobType;
165
+ readonly name: import("@elaraai/east").StringType;
166
+ readonly data: import("@elaraai/east").BlobType;
167
167
  }>>, import("@elaraai/east").StructType<{
168
- level: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
168
+ readonly level: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
169
169
  }>], import("@elaraai/east").BlobType>;
170
170
  /**
171
171
  * Extracts files from a ZIP archive.
@@ -203,21 +203,21 @@ export declare const Compression: {
203
203
  * ZIP compression options.
204
204
  */
205
205
  readonly Options: import("@elaraai/east").StructType<{
206
- level: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
206
+ readonly level: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
207
207
  }>;
208
208
  /**
209
209
  * Entry in a ZIP archive.
210
210
  */
211
211
  readonly Entry: import("@elaraai/east").StructType<{
212
- name: import("@elaraai/east").StringType;
213
- data: import("@elaraai/east").BlobType;
212
+ readonly name: import("@elaraai/east").StringType;
213
+ readonly data: import("@elaraai/east").BlobType;
214
214
  }>;
215
215
  /**
216
216
  * List of entries for creating a ZIP archive.
217
217
  */
218
218
  readonly Entries: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
219
- name: import("@elaraai/east").StringType;
220
- data: import("@elaraai/east").BlobType;
219
+ readonly name: import("@elaraai/east").StringType;
220
+ readonly data: import("@elaraai/east").BlobType;
221
221
  }>>;
222
222
  /**
223
223
  * Extracted files from a ZIP archive.
@@ -253,8 +253,8 @@ export declare const Compression: {
253
253
  * ```
254
254
  */
255
255
  readonly create: import("@elaraai/east").AsyncPlatformDefinition<[import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
256
- name: import("@elaraai/east").StringType;
257
- data: import("@elaraai/east").BlobType;
256
+ readonly name: import("@elaraai/east").StringType;
257
+ readonly data: import("@elaraai/east").BlobType;
258
258
  }>>], import("@elaraai/east").BlobType>;
259
259
  /**
260
260
  * Extracts files from a TAR archive.
@@ -288,15 +288,15 @@ export declare const Compression: {
288
288
  * Entry in a TAR archive.
289
289
  */
290
290
  readonly Entry: import("@elaraai/east").StructType<{
291
- name: import("@elaraai/east").StringType;
292
- data: import("@elaraai/east").BlobType;
291
+ readonly name: import("@elaraai/east").StringType;
292
+ readonly data: import("@elaraai/east").BlobType;
293
293
  }>;
294
294
  /**
295
295
  * List of entries for creating a TAR archive.
296
296
  */
297
297
  readonly Entries: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
298
- name: import("@elaraai/east").StringType;
299
- data: import("@elaraai/east").BlobType;
298
+ readonly name: import("@elaraai/east").StringType;
299
+ readonly data: import("@elaraai/east").BlobType;
300
300
  }>>;
301
301
  /**
302
302
  * Extracted files from a TAR archive.
@@ -63,8 +63,8 @@ import type { PlatformFunction } from "@elaraai/east/internal";
63
63
  * - Operations are asynchronous (use East.compileAsync)
64
64
  */
65
65
  export declare const tar_create: import("@elaraai/east").AsyncPlatformDefinition<[import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
66
- name: import("@elaraai/east").StringType;
67
- data: BlobType;
66
+ readonly name: import("@elaraai/east").StringType;
67
+ readonly data: BlobType;
68
68
  }>>], BlobType>;
69
69
  /**
70
70
  * Extracts files from a TAR archive.
@@ -30,7 +30,7 @@ export declare const GzipOptionsType: StructType<{
30
30
  * Compression level (0-9).
31
31
  * If not specified, defaults to 6.
32
32
  */
33
- level: OptionType<IntegerType>;
33
+ readonly level: OptionType<IntegerType>;
34
34
  }>;
35
35
  /**
36
36
  * Compression level for zip operations (0-9).
@@ -51,7 +51,7 @@ export declare const ZipOptionsType: StructType<{
51
51
  * Compression level (0-9).
52
52
  * If not specified, defaults to 6.
53
53
  */
54
- level: OptionType<IntegerType>;
54
+ readonly level: OptionType<IntegerType>;
55
55
  }>;
56
56
  /**
57
57
  * Entry in a ZIP archive.
@@ -62,11 +62,11 @@ export declare const ZipEntryType: StructType<{
62
62
  /**
63
63
  * Name/path of the file within the archive.
64
64
  */
65
- name: StringType;
65
+ readonly name: StringType;
66
66
  /**
67
67
  * Uncompressed file data as bytes.
68
68
  */
69
- data: BlobType;
69
+ readonly data: BlobType;
70
70
  }>;
71
71
  /**
72
72
  * List of entries for creating a ZIP archive.
@@ -75,11 +75,11 @@ export declare const ZipEntriesType: ArrayType<StructType<{
75
75
  /**
76
76
  * Name/path of the file within the archive.
77
77
  */
78
- name: StringType;
78
+ readonly name: StringType;
79
79
  /**
80
80
  * Uncompressed file data as bytes.
81
81
  */
82
- data: BlobType;
82
+ readonly data: BlobType;
83
83
  }>>;
84
84
  /**
85
85
  * Entry in a TAR archive.
@@ -90,11 +90,11 @@ export declare const TarEntryType: StructType<{
90
90
  /**
91
91
  * Name/path of the file within the archive.
92
92
  */
93
- name: StringType;
93
+ readonly name: StringType;
94
94
  /**
95
95
  * File data as bytes.
96
96
  */
97
- data: BlobType;
97
+ readonly data: BlobType;
98
98
  }>;
99
99
  /**
100
100
  * List of entries for creating a TAR archive.
@@ -103,11 +103,11 @@ export declare const TarEntriesType: ArrayType<StructType<{
103
103
  /**
104
104
  * Name/path of the file within the archive.
105
105
  */
106
- name: StringType;
106
+ readonly name: StringType;
107
107
  /**
108
108
  * File data as bytes.
109
109
  */
110
- data: BlobType;
110
+ readonly data: BlobType;
111
111
  }>>;
112
112
  /**
113
113
  * Extracted files from a ZIP archive as a dictionary.
@@ -68,10 +68,10 @@ import type { PlatformFunction } from "@elaraai/east/internal";
68
68
  * - File names can include directory paths (e.g., "dir/file.txt")
69
69
  */
70
70
  export declare const zip_compress: import("@elaraai/east").PlatformDefinition<[import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
71
- name: import("@elaraai/east").StringType;
72
- data: BlobType;
71
+ readonly name: import("@elaraai/east").StringType;
72
+ readonly data: BlobType;
73
73
  }>>, import("@elaraai/east").StructType<{
74
- level: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
74
+ readonly level: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
75
75
  }>], BlobType>;
76
76
  /**
77
77
  * Extracts files from a ZIP archive.
@@ -95,15 +95,15 @@ export declare const Format: {
95
95
  * ```
96
96
  */
97
97
  readonly read: import("@elaraai/east").PlatformDefinition<[import("@elaraai/east").BlobType, import("@elaraai/east").StructType<{
98
- sheetName: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
98
+ readonly sheetName: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
99
99
  }>], import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
100
- Null: import("@elaraai/east").NullType;
101
- Boolean: import("@elaraai/east").BooleanType;
102
- Integer: import("@elaraai/east").IntegerType;
103
- Float: import("@elaraai/east").FloatType;
104
- String: import("@elaraai/east").StringType;
105
- DateTime: import("@elaraai/east").DateTimeType;
106
- Blob: import("@elaraai/east").BlobType;
100
+ readonly Null: import("@elaraai/east").NullType;
101
+ readonly Boolean: import("@elaraai/east").BooleanType;
102
+ readonly Integer: import("@elaraai/east").IntegerType;
103
+ readonly Float: import("@elaraai/east").FloatType;
104
+ readonly String: import("@elaraai/east").StringType;
105
+ readonly DateTime: import("@elaraai/east").DateTimeType;
106
+ readonly Blob: import("@elaraai/east").BlobType;
107
107
  }>>>>;
108
108
  /**
109
109
  * Writes a 2D array of cell values to an XLSX file.
@@ -134,15 +134,15 @@ export declare const Format: {
134
134
  * ```
135
135
  */
136
136
  readonly write: import("@elaraai/east").PlatformDefinition<[import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
137
- Null: import("@elaraai/east").NullType;
138
- Boolean: import("@elaraai/east").BooleanType;
139
- Integer: import("@elaraai/east").IntegerType;
140
- Float: import("@elaraai/east").FloatType;
141
- String: import("@elaraai/east").StringType;
142
- DateTime: import("@elaraai/east").DateTimeType;
143
- Blob: import("@elaraai/east").BlobType;
137
+ readonly Null: import("@elaraai/east").NullType;
138
+ readonly Boolean: import("@elaraai/east").BooleanType;
139
+ readonly Integer: import("@elaraai/east").IntegerType;
140
+ readonly Float: import("@elaraai/east").FloatType;
141
+ readonly String: import("@elaraai/east").StringType;
142
+ readonly DateTime: import("@elaraai/east").DateTimeType;
143
+ readonly Blob: import("@elaraai/east").BlobType;
144
144
  }>>>, import("@elaraai/east").StructType<{
145
- sheetName: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
145
+ readonly sheetName: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
146
146
  }>], import("@elaraai/east").BlobType>;
147
147
  /**
148
148
  * Gets metadata about an XLSX file.
@@ -165,10 +165,10 @@ export declare const Format: {
165
165
  * ```
166
166
  */
167
167
  readonly info: import("@elaraai/east").PlatformDefinition<[import("@elaraai/east").BlobType], import("@elaraai/east").StructType<{
168
- sheets: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
169
- name: import("@elaraai/east").StringType;
170
- rowCount: import("@elaraai/east").IntegerType;
171
- columnCount: import("@elaraai/east").IntegerType;
168
+ readonly sheets: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
169
+ readonly name: import("@elaraai/east").StringType;
170
+ readonly rowCount: import("@elaraai/east").IntegerType;
171
+ readonly columnCount: import("@elaraai/east").IntegerType;
172
172
  }>>;
173
173
  }>>;
174
174
  /**
@@ -203,66 +203,66 @@ export declare const Format: {
203
203
  * A single cell value in a spreadsheet (LiteralValueType).
204
204
  */
205
205
  readonly Cell: import("@elaraai/east").VariantType<{
206
- Null: import("@elaraai/east").NullType;
207
- Boolean: import("@elaraai/east").BooleanType;
208
- Integer: import("@elaraai/east").IntegerType;
209
- Float: import("@elaraai/east").FloatType;
210
- String: import("@elaraai/east").StringType;
211
- DateTime: import("@elaraai/east").DateTimeType;
212
- Blob: import("@elaraai/east").BlobType;
206
+ readonly Null: import("@elaraai/east").NullType;
207
+ readonly Boolean: import("@elaraai/east").BooleanType;
208
+ readonly Integer: import("@elaraai/east").IntegerType;
209
+ readonly Float: import("@elaraai/east").FloatType;
210
+ readonly String: import("@elaraai/east").StringType;
211
+ readonly DateTime: import("@elaraai/east").DateTimeType;
212
+ readonly Blob: import("@elaraai/east").BlobType;
213
213
  }>;
214
214
  /**
215
215
  * A row of cells in a spreadsheet.
216
216
  */
217
217
  readonly Row: import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
218
- Null: import("@elaraai/east").NullType;
219
- Boolean: import("@elaraai/east").BooleanType;
220
- Integer: import("@elaraai/east").IntegerType;
221
- Float: import("@elaraai/east").FloatType;
222
- String: import("@elaraai/east").StringType;
223
- DateTime: import("@elaraai/east").DateTimeType;
224
- Blob: import("@elaraai/east").BlobType;
218
+ readonly Null: import("@elaraai/east").NullType;
219
+ readonly Boolean: import("@elaraai/east").BooleanType;
220
+ readonly Integer: import("@elaraai/east").IntegerType;
221
+ readonly Float: import("@elaraai/east").FloatType;
222
+ readonly String: import("@elaraai/east").StringType;
223
+ readonly DateTime: import("@elaraai/east").DateTimeType;
224
+ readonly Blob: import("@elaraai/east").BlobType;
225
225
  }>>;
226
226
  /**
227
227
  * A 2D array representing a complete worksheet.
228
228
  */
229
229
  readonly Sheet: import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
230
- Null: import("@elaraai/east").NullType;
231
- Boolean: import("@elaraai/east").BooleanType;
232
- Integer: import("@elaraai/east").IntegerType;
233
- Float: import("@elaraai/east").FloatType;
234
- String: import("@elaraai/east").StringType;
235
- DateTime: import("@elaraai/east").DateTimeType;
236
- Blob: import("@elaraai/east").BlobType;
230
+ readonly Null: import("@elaraai/east").NullType;
231
+ readonly Boolean: import("@elaraai/east").BooleanType;
232
+ readonly Integer: import("@elaraai/east").IntegerType;
233
+ readonly Float: import("@elaraai/east").FloatType;
234
+ readonly String: import("@elaraai/east").StringType;
235
+ readonly DateTime: import("@elaraai/east").DateTimeType;
236
+ readonly Blob: import("@elaraai/east").BlobType;
237
237
  }>>>;
238
238
  /**
239
239
  * XLSX read options configuration.
240
240
  */
241
241
  readonly ReadOptions: import("@elaraai/east").StructType<{
242
- sheetName: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
242
+ readonly sheetName: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
243
243
  }>;
244
244
  /**
245
245
  * XLSX write options configuration.
246
246
  */
247
247
  readonly WriteOptions: import("@elaraai/east").StructType<{
248
- sheetName: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
248
+ readonly sheetName: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
249
249
  }>;
250
250
  /**
251
251
  * Information about a single sheet in an XLSX file.
252
252
  */
253
253
  readonly SheetInfo: import("@elaraai/east").StructType<{
254
- name: import("@elaraai/east").StringType;
255
- rowCount: import("@elaraai/east").IntegerType;
256
- columnCount: import("@elaraai/east").IntegerType;
254
+ readonly name: import("@elaraai/east").StringType;
255
+ readonly rowCount: import("@elaraai/east").IntegerType;
256
+ readonly columnCount: import("@elaraai/east").IntegerType;
257
257
  }>;
258
258
  /**
259
259
  * XLSX file metadata with sheet listing.
260
260
  */
261
261
  readonly Info: import("@elaraai/east").StructType<{
262
- sheets: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
263
- name: import("@elaraai/east").StringType;
264
- rowCount: import("@elaraai/east").IntegerType;
265
- columnCount: import("@elaraai/east").IntegerType;
262
+ readonly sheets: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
263
+ readonly name: import("@elaraai/east").StringType;
264
+ readonly rowCount: import("@elaraai/east").IntegerType;
265
+ readonly columnCount: import("@elaraai/east").IntegerType;
266
266
  }>>;
267
267
  }>;
268
268
  };
@@ -300,14 +300,14 @@ export declare const Format: {
300
300
  * ```
301
301
  */
302
302
  readonly parse: import("@elaraai/east").PlatformDefinition<[import("@elaraai/east").BlobType, import("@elaraai/east").StructType<{
303
- preserveWhitespace: import("@elaraai/east").BooleanType;
304
- decodeEntities: import("@elaraai/east").BooleanType;
303
+ readonly preserveWhitespace: import("@elaraai/east").BooleanType;
304
+ readonly decodeEntities: import("@elaraai/east").BooleanType;
305
305
  }>], import("@elaraai/east").RecursiveType<import("@elaraai/east").StructType<{
306
- tag: import("@elaraai/east").StringType;
307
- attributes: import("@elaraai/east").DictType<import("@elaraai/east").StringType, import("@elaraai/east").StringType>;
308
- children: import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
309
- TEXT: import("@elaraai/east").StringType;
310
- ELEMENT: import("@elaraai/east").RecursiveTypeMarker;
306
+ readonly tag: import("@elaraai/east").StringType;
307
+ readonly attributes: import("@elaraai/east").DictType<import("@elaraai/east").StringType, import("@elaraai/east").StringType>;
308
+ readonly children: import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
309
+ readonly TEXT: import("@elaraai/east").StringType;
310
+ readonly ELEMENT: import("@elaraai/east").RecursiveTypeMarker;
311
311
  }>>;
312
312
  }>>>;
313
313
  /**
@@ -338,17 +338,17 @@ export declare const Format: {
338
338
  * ```
339
339
  */
340
340
  readonly serialize: import("@elaraai/east").PlatformDefinition<[import("@elaraai/east").RecursiveType<import("@elaraai/east").StructType<{
341
- tag: import("@elaraai/east").StringType;
342
- attributes: import("@elaraai/east").DictType<import("@elaraai/east").StringType, import("@elaraai/east").StringType>;
343
- children: import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
344
- TEXT: import("@elaraai/east").StringType;
345
- ELEMENT: import("@elaraai/east").RecursiveTypeMarker;
341
+ readonly tag: import("@elaraai/east").StringType;
342
+ readonly attributes: import("@elaraai/east").DictType<import("@elaraai/east").StringType, import("@elaraai/east").StringType>;
343
+ readonly children: import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
344
+ readonly TEXT: import("@elaraai/east").StringType;
345
+ readonly ELEMENT: import("@elaraai/east").RecursiveTypeMarker;
346
346
  }>>;
347
347
  }>>, import("@elaraai/east").StructType<{
348
- indent: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
349
- includeXmlDeclaration: import("@elaraai/east").BooleanType;
350
- encodeEntities: import("@elaraai/east").BooleanType;
351
- selfClosingTags: import("@elaraai/east").BooleanType;
348
+ readonly indent: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
349
+ readonly includeXmlDeclaration: import("@elaraai/east").BooleanType;
350
+ readonly encodeEntities: import("@elaraai/east").BooleanType;
351
+ readonly selfClosingTags: import("@elaraai/east").BooleanType;
352
352
  }>], import("@elaraai/east").BlobType>;
353
353
  /**
354
354
  * Node.js implementation of XML platform functions.
@@ -392,27 +392,27 @@ export declare const Format: {
392
392
  * XML parsing configuration type.
393
393
  */
394
394
  readonly ParseConfig: import("@elaraai/east").StructType<{
395
- preserveWhitespace: import("@elaraai/east").BooleanType;
396
- decodeEntities: import("@elaraai/east").BooleanType;
395
+ readonly preserveWhitespace: import("@elaraai/east").BooleanType;
396
+ readonly decodeEntities: import("@elaraai/east").BooleanType;
397
397
  }>;
398
398
  /**
399
399
  * XML serialization configuration type.
400
400
  */
401
401
  readonly SerializeConfig: import("@elaraai/east").StructType<{
402
- indent: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
403
- includeXmlDeclaration: import("@elaraai/east").BooleanType;
404
- encodeEntities: import("@elaraai/east").BooleanType;
405
- selfClosingTags: import("@elaraai/east").BooleanType;
402
+ readonly indent: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
403
+ readonly includeXmlDeclaration: import("@elaraai/east").BooleanType;
404
+ readonly encodeEntities: import("@elaraai/east").BooleanType;
405
+ readonly selfClosingTags: import("@elaraai/east").BooleanType;
406
406
  }>;
407
407
  /**
408
408
  * XML node recursive type (element with tag, attributes, and children).
409
409
  */
410
410
  readonly Node: import("@elaraai/east").RecursiveType<import("@elaraai/east").StructType<{
411
- tag: import("@elaraai/east").StringType;
412
- attributes: import("@elaraai/east").DictType<import("@elaraai/east").StringType, import("@elaraai/east").StringType>;
413
- children: import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
414
- TEXT: import("@elaraai/east").StringType;
415
- ELEMENT: import("@elaraai/east").RecursiveTypeMarker;
411
+ readonly tag: import("@elaraai/east").StringType;
412
+ readonly attributes: import("@elaraai/east").DictType<import("@elaraai/east").StringType, import("@elaraai/east").StringType>;
413
+ readonly children: import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
414
+ readonly TEXT: import("@elaraai/east").StringType;
415
+ readonly ELEMENT: import("@elaraai/east").RecursiveTypeMarker;
416
416
  }>>;
417
417
  }>>;
418
418
  };
@@ -18,13 +18,13 @@ import { StructType, OptionType, ArrayType, DictType, StringType, IntegerType }
18
18
  * which supports all primitive JavaScript values that can appear in Excel cells.
19
19
  */
20
20
  export declare const XlsxCellType: import("@elaraai/east").VariantType<{
21
- Null: import("@elaraai/east").NullType;
22
- Boolean: import("@elaraai/east").BooleanType;
23
- Integer: IntegerType;
24
- Float: import("@elaraai/east").FloatType;
25
- String: StringType;
26
- DateTime: import("@elaraai/east").DateTimeType;
27
- Blob: import("@elaraai/east").BlobType;
21
+ readonly Null: import("@elaraai/east").NullType;
22
+ readonly Boolean: import("@elaraai/east").BooleanType;
23
+ readonly Integer: IntegerType;
24
+ readonly Float: import("@elaraai/east").FloatType;
25
+ readonly String: StringType;
26
+ readonly DateTime: import("@elaraai/east").DateTimeType;
27
+ readonly Blob: import("@elaraai/east").BlobType;
28
28
  }>;
29
29
  /**
30
30
  * A row of cells in a spreadsheet.
@@ -32,13 +32,13 @@ export declare const XlsxCellType: import("@elaraai/east").VariantType<{
32
32
  * Represents a single row as an array of cell values.
33
33
  */
34
34
  export declare const XlsxRowType: ArrayType<import("@elaraai/east").VariantType<{
35
- Null: import("@elaraai/east").NullType;
36
- Boolean: import("@elaraai/east").BooleanType;
37
- Integer: IntegerType;
38
- Float: import("@elaraai/east").FloatType;
39
- String: StringType;
40
- DateTime: import("@elaraai/east").DateTimeType;
41
- Blob: import("@elaraai/east").BlobType;
35
+ readonly Null: import("@elaraai/east").NullType;
36
+ readonly Boolean: import("@elaraai/east").BooleanType;
37
+ readonly Integer: IntegerType;
38
+ readonly Float: import("@elaraai/east").FloatType;
39
+ readonly String: StringType;
40
+ readonly DateTime: import("@elaraai/east").DateTimeType;
41
+ readonly Blob: import("@elaraai/east").BlobType;
42
42
  }>>;
43
43
  /**
44
44
  * A 2D array representing a complete worksheet.
@@ -47,13 +47,13 @@ export declare const XlsxRowType: ArrayType<import("@elaraai/east").VariantType<
47
47
  * This is the main data structure for reading/writing XLSX files.
48
48
  */
49
49
  export declare const XlsxSheetType: ArrayType<ArrayType<import("@elaraai/east").VariantType<{
50
- Null: import("@elaraai/east").NullType;
51
- Boolean: import("@elaraai/east").BooleanType;
52
- Integer: IntegerType;
53
- Float: import("@elaraai/east").FloatType;
54
- String: StringType;
55
- DateTime: import("@elaraai/east").DateTimeType;
56
- Blob: import("@elaraai/east").BlobType;
50
+ readonly Null: import("@elaraai/east").NullType;
51
+ readonly Boolean: import("@elaraai/east").BooleanType;
52
+ readonly Integer: IntegerType;
53
+ readonly Float: import("@elaraai/east").FloatType;
54
+ readonly String: StringType;
55
+ readonly DateTime: import("@elaraai/east").DateTimeType;
56
+ readonly Blob: import("@elaraai/east").BlobType;
57
57
  }>>>;
58
58
  /**
59
59
  * XLSX read options configuration.
@@ -65,7 +65,7 @@ export declare const XlsxReadOptionsType: StructType<{
65
65
  * Name of the sheet to read.
66
66
  * If not specified, reads the first sheet.
67
67
  */
68
- sheetName: OptionType<StringType>;
68
+ readonly sheetName: OptionType<StringType>;
69
69
  }>;
70
70
  /**
71
71
  * XLSX write options configuration.
@@ -77,31 +77,31 @@ export declare const XlsxWriteOptionsType: StructType<{
77
77
  * Name of the sheet to create.
78
78
  * Defaults to "Sheet1" if not specified.
79
79
  */
80
- sheetName: OptionType<StringType>;
80
+ readonly sheetName: OptionType<StringType>;
81
81
  }>;
82
82
  /**
83
83
  * Information about sheets in an XLSX file.
84
84
  */
85
85
  export declare const XlsxSheetInfoType: StructType<{
86
86
  /** Sheet name */
87
- name: StringType;
87
+ readonly name: StringType;
88
88
  /** Number of rows (approximate) */
89
- rowCount: IntegerType;
89
+ readonly rowCount: IntegerType;
90
90
  /** Number of columns (approximate) */
91
- columnCount: IntegerType;
91
+ readonly columnCount: IntegerType;
92
92
  }>;
93
93
  /**
94
94
  * XLSX file metadata and sheet listing.
95
95
  */
96
96
  export declare const XlsxInfoType: StructType<{
97
97
  /** List of sheets in the workbook */
98
- sheets: ArrayType<StructType<{
98
+ readonly sheets: ArrayType<StructType<{
99
99
  /** Sheet name */
100
- name: StringType;
100
+ readonly name: StringType;
101
101
  /** Number of rows (approximate) */
102
- rowCount: IntegerType;
102
+ readonly rowCount: IntegerType;
103
103
  /** Number of columns (approximate) */
104
- columnCount: IntegerType;
104
+ readonly columnCount: IntegerType;
105
105
  }>>;
106
106
  }>;
107
107
  /**
@@ -111,13 +111,13 @@ export declare const XlsxInfoType: StructType<{
111
111
  * which supports all primitive JavaScript values that can appear in CSV cells.
112
112
  */
113
113
  export declare const CsvCellType: import("@elaraai/east").VariantType<{
114
- Null: import("@elaraai/east").NullType;
115
- Boolean: import("@elaraai/east").BooleanType;
116
- Integer: IntegerType;
117
- Float: import("@elaraai/east").FloatType;
118
- String: StringType;
119
- DateTime: import("@elaraai/east").DateTimeType;
120
- Blob: import("@elaraai/east").BlobType;
114
+ readonly Null: import("@elaraai/east").NullType;
115
+ readonly Boolean: import("@elaraai/east").BooleanType;
116
+ readonly Integer: IntegerType;
117
+ readonly Float: import("@elaraai/east").FloatType;
118
+ readonly String: StringType;
119
+ readonly DateTime: import("@elaraai/east").DateTimeType;
120
+ readonly Blob: import("@elaraai/east").BlobType;
121
121
  }>;
122
122
  /**
123
123
  * A row of cells in a CSV file represented as a dictionary.
@@ -126,13 +126,13 @@ export declare const CsvCellType: import("@elaraai/east").VariantType<{
126
126
  * This allows accessing cells by name rather than index.
127
127
  */
128
128
  export declare const CsvRowType: DictType<StringType, import("@elaraai/east").VariantType<{
129
- Null: import("@elaraai/east").NullType;
130
- Boolean: import("@elaraai/east").BooleanType;
131
- Integer: IntegerType;
132
- Float: import("@elaraai/east").FloatType;
133
- String: StringType;
134
- DateTime: import("@elaraai/east").DateTimeType;
135
- Blob: import("@elaraai/east").BlobType;
129
+ readonly Null: import("@elaraai/east").NullType;
130
+ readonly Boolean: import("@elaraai/east").BooleanType;
131
+ readonly Integer: IntegerType;
132
+ readonly Float: import("@elaraai/east").FloatType;
133
+ readonly String: StringType;
134
+ readonly DateTime: import("@elaraai/east").DateTimeType;
135
+ readonly Blob: import("@elaraai/east").BlobType;
136
136
  }>>;
137
137
  /**
138
138
  * CSV data as an array of rows.
@@ -141,13 +141,13 @@ export declare const CsvRowType: DictType<StringType, import("@elaraai/east").Va
141
141
  * The first row of the CSV file is used as column headers.
142
142
  */
143
143
  export declare const CsvDataType: ArrayType<DictType<StringType, import("@elaraai/east").VariantType<{
144
- Null: import("@elaraai/east").NullType;
145
- Boolean: import("@elaraai/east").BooleanType;
146
- Integer: IntegerType;
147
- Float: import("@elaraai/east").FloatType;
148
- String: StringType;
149
- DateTime: import("@elaraai/east").DateTimeType;
150
- Blob: import("@elaraai/east").BlobType;
144
+ readonly Null: import("@elaraai/east").NullType;
145
+ readonly Boolean: import("@elaraai/east").BooleanType;
146
+ readonly Integer: IntegerType;
147
+ readonly Float: import("@elaraai/east").FloatType;
148
+ readonly String: StringType;
149
+ readonly DateTime: import("@elaraai/east").DateTimeType;
150
+ readonly Blob: import("@elaraai/east").BlobType;
151
151
  }>>>;
152
152
  /**
153
153
  * CSV read options configuration.
@@ -159,7 +159,7 @@ export declare const CsvReadOptionsType: StructType<{
159
159
  * Delimiter character.
160
160
  * Defaults to "," if not specified.
161
161
  */
162
- delimiter: OptionType<StringType>;
162
+ readonly delimiter: OptionType<StringType>;
163
163
  }>;
164
164
  /**
165
165
  * CSV write options configuration.
@@ -171,6 +171,6 @@ export declare const CsvWriteOptionsType: StructType<{
171
171
  * Delimiter character.
172
172
  * Defaults to "," if not specified.
173
173
  */
174
- delimiter: OptionType<StringType>;
174
+ readonly delimiter: OptionType<StringType>;
175
175
  }>;
176
176
  //# sourceMappingURL=types.d.ts.map