@elaraai/east-node-io 0.0.1-beta.16 → 0.0.1-beta.18
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/compression/gzip.d.ts +1 -1
- package/dist/compression/gzip.js +3 -3
- package/dist/compression/gzip.js.map +1 -1
- package/dist/compression/index.d.ts +16 -16
- package/dist/compression/tar.d.ts +2 -2
- package/dist/compression/tar.js +7 -7
- package/dist/compression/tar.js.map +1 -1
- package/dist/compression/types.d.ts +10 -10
- package/dist/compression/zip.d.ts +3 -3
- package/dist/compression/zip.js +4 -4
- package/dist/compression/zip.js.map +1 -1
- package/dist/connection/index.js +2 -2
- package/dist/connection/index.js.map +1 -1
- package/dist/format/index.d.ts +77 -77
- package/dist/format/types.d.ts +53 -53
- package/dist/format/xlsx.d.ts +20 -20
- package/dist/format/xlsx.js +6 -6
- package/dist/format/xlsx.js.map +1 -1
- package/dist/format/xml.d.ts +54 -54
- package/dist/format/xml.js +14 -14
- package/dist/format/xml.js.map +1 -1
- package/dist/nosql/index.d.ts +20 -20
- package/dist/nosql/mongodb.d.ts +5 -5
- package/dist/nosql/mongodb.js +8 -8
- package/dist/nosql/mongodb.js.map +1 -1
- package/dist/nosql/redis.d.ts +5 -5
- package/dist/nosql/redis.js +6 -6
- package/dist/nosql/redis.js.map +1 -1
- package/dist/nosql/types.d.ts +10 -10
- package/dist/sql/index.d.ts +214 -214
- package/dist/sql/mysql.d.ts +30 -30
- package/dist/sql/mysql.js +5 -5
- package/dist/sql/mysql.js.map +1 -1
- package/dist/sql/postgres.d.ts +30 -30
- package/dist/sql/postgres.js +5 -5
- package/dist/sql/postgres.js.map +1 -1
- package/dist/sql/sqlite.d.ts +26 -26
- package/dist/sql/sqlite.js +5 -5
- package/dist/sql/sqlite.js.map +1 -1
- package/dist/sql/types.d.ts +54 -54
- package/dist/storage/index.d.ts +61 -61
- package/dist/storage/s3.d.ts +43 -43
- package/dist/storage/s3.js +6 -6
- package/dist/storage/s3.js.map +1 -1
- package/dist/storage/types.d.ts +18 -18
- package/dist/transfer/ftp.d.ts +10 -10
- package/dist/transfer/ftp.js +6 -6
- package/dist/transfer/ftp.js.map +1 -1
- package/dist/transfer/index.d.ts +40 -40
- package/dist/transfer/sftp.d.ts +10 -10
- package/dist/transfer/sftp.js +6 -6
- package/dist/transfer/sftp.js.map +1 -1
- package/dist/transfer/types.d.ts +15 -15
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
package/dist/format/index.d.ts
CHANGED
|
@@ -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
|
};
|
package/dist/format/types.d.ts
CHANGED
|
@@ -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
|
package/dist/format/xlsx.d.ts
CHANGED
|
@@ -62,15 +62,15 @@ import type { PlatformFunction } from "@elaraai/east/internal";
|
|
|
62
62
|
* - Formulas are evaluated and their results are returned
|
|
63
63
|
*/
|
|
64
64
|
export declare const xlsx_read: import("@elaraai/east").PlatformDefinition<[BlobType, import("@elaraai/east").StructType<{
|
|
65
|
-
sheetName: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
65
|
+
readonly sheetName: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
66
66
|
}>], import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
|
|
67
|
-
Null: import("@elaraai/east").NullType;
|
|
68
|
-
Boolean: import("@elaraai/east").BooleanType;
|
|
69
|
-
Integer: import("@elaraai/east").IntegerType;
|
|
70
|
-
Float: import("@elaraai/east").FloatType;
|
|
71
|
-
String: import("@elaraai/east").StringType;
|
|
72
|
-
DateTime: import("@elaraai/east").DateTimeType;
|
|
73
|
-
Blob: BlobType;
|
|
67
|
+
readonly Null: import("@elaraai/east").NullType;
|
|
68
|
+
readonly Boolean: import("@elaraai/east").BooleanType;
|
|
69
|
+
readonly Integer: import("@elaraai/east").IntegerType;
|
|
70
|
+
readonly Float: import("@elaraai/east").FloatType;
|
|
71
|
+
readonly String: import("@elaraai/east").StringType;
|
|
72
|
+
readonly DateTime: import("@elaraai/east").DateTimeType;
|
|
73
|
+
readonly Blob: BlobType;
|
|
74
74
|
}>>>>;
|
|
75
75
|
/**
|
|
76
76
|
* Writes a 2D array of cell values to an XLSX file.
|
|
@@ -122,15 +122,15 @@ export declare const xlsx_read: import("@elaraai/east").PlatformDefinition<[Blob
|
|
|
122
122
|
* - All rows should ideally have the same number of columns
|
|
123
123
|
*/
|
|
124
124
|
export declare const xlsx_write: import("@elaraai/east").PlatformDefinition<[import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
|
|
125
|
-
Null: import("@elaraai/east").NullType;
|
|
126
|
-
Boolean: import("@elaraai/east").BooleanType;
|
|
127
|
-
Integer: import("@elaraai/east").IntegerType;
|
|
128
|
-
Float: import("@elaraai/east").FloatType;
|
|
129
|
-
String: import("@elaraai/east").StringType;
|
|
130
|
-
DateTime: import("@elaraai/east").DateTimeType;
|
|
131
|
-
Blob: BlobType;
|
|
125
|
+
readonly Null: import("@elaraai/east").NullType;
|
|
126
|
+
readonly Boolean: import("@elaraai/east").BooleanType;
|
|
127
|
+
readonly Integer: import("@elaraai/east").IntegerType;
|
|
128
|
+
readonly Float: import("@elaraai/east").FloatType;
|
|
129
|
+
readonly String: import("@elaraai/east").StringType;
|
|
130
|
+
readonly DateTime: import("@elaraai/east").DateTimeType;
|
|
131
|
+
readonly Blob: BlobType;
|
|
132
132
|
}>>>, import("@elaraai/east").StructType<{
|
|
133
|
-
sheetName: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
133
|
+
readonly sheetName: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
134
134
|
}>], BlobType>;
|
|
135
135
|
/**
|
|
136
136
|
* Gets metadata about an XLSX file without reading all data.
|
|
@@ -162,10 +162,10 @@ export declare const xlsx_write: import("@elaraai/east").PlatformDefinition<[imp
|
|
|
162
162
|
* ```
|
|
163
163
|
*/
|
|
164
164
|
export declare const xlsx_info: import("@elaraai/east").PlatformDefinition<[BlobType], import("@elaraai/east").StructType<{
|
|
165
|
-
sheets: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
166
|
-
name: import("@elaraai/east").StringType;
|
|
167
|
-
rowCount: import("@elaraai/east").IntegerType;
|
|
168
|
-
columnCount: import("@elaraai/east").IntegerType;
|
|
165
|
+
readonly sheets: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
166
|
+
readonly name: import("@elaraai/east").StringType;
|
|
167
|
+
readonly rowCount: import("@elaraai/east").IntegerType;
|
|
168
|
+
readonly columnCount: import("@elaraai/east").IntegerType;
|
|
169
169
|
}>>;
|
|
170
170
|
}>>;
|
|
171
171
|
/**
|
package/dist/format/xlsx.js
CHANGED
|
@@ -181,7 +181,7 @@ export const XlsxImpl = [
|
|
|
181
181
|
sheetName = options.sheetName.value;
|
|
182
182
|
if (!workbook.Sheets[sheetName]) {
|
|
183
183
|
throw new EastError(`Sheet "${sheetName}" not found in workbook`, {
|
|
184
|
-
location: { filename: "xlsx_read", line: 0n, column: 0n }
|
|
184
|
+
location: [{ filename: "xlsx_read", line: 0n, column: 0n }]
|
|
185
185
|
});
|
|
186
186
|
}
|
|
187
187
|
}
|
|
@@ -190,7 +190,7 @@ export const XlsxImpl = [
|
|
|
190
190
|
const firstSheetName = workbook.SheetNames[0];
|
|
191
191
|
if (!firstSheetName) {
|
|
192
192
|
throw new EastError('Workbook contains no sheets', {
|
|
193
|
-
location: { filename: "xlsx_read", line: 0n, column: 0n }
|
|
193
|
+
location: [{ filename: "xlsx_read", line: 0n, column: 0n }]
|
|
194
194
|
});
|
|
195
195
|
}
|
|
196
196
|
sheetName = firstSheetName;
|
|
@@ -198,7 +198,7 @@ export const XlsxImpl = [
|
|
|
198
198
|
const worksheet = workbook.Sheets[sheetName];
|
|
199
199
|
if (!worksheet) {
|
|
200
200
|
throw new EastError(`Sheet "${sheetName}" not found in workbook`, {
|
|
201
|
-
location: { filename: "xlsx_read", line: 0n, column: 0n }
|
|
201
|
+
location: [{ filename: "xlsx_read", line: 0n, column: 0n }]
|
|
202
202
|
});
|
|
203
203
|
}
|
|
204
204
|
// Get the range of the worksheet
|
|
@@ -246,7 +246,7 @@ export const XlsxImpl = [
|
|
|
246
246
|
throw err;
|
|
247
247
|
}
|
|
248
248
|
throw new EastError(`Failed to read XLSX file: ${err.message}`, {
|
|
249
|
-
location: { filename: "xlsx_read", line: 0n, column: 0n },
|
|
249
|
+
location: [{ filename: "xlsx_read", line: 0n, column: 0n }],
|
|
250
250
|
cause: err
|
|
251
251
|
});
|
|
252
252
|
}
|
|
@@ -272,7 +272,7 @@ export const XlsxImpl = [
|
|
|
272
272
|
}
|
|
273
273
|
catch (err) {
|
|
274
274
|
throw new EastError(`Failed to write XLSX file: ${err.message}`, {
|
|
275
|
-
location: { filename: "xlsx_write", line: 0n, column: 0n },
|
|
275
|
+
location: [{ filename: "xlsx_write", line: 0n, column: 0n }],
|
|
276
276
|
cause: err
|
|
277
277
|
});
|
|
278
278
|
}
|
|
@@ -304,7 +304,7 @@ export const XlsxImpl = [
|
|
|
304
304
|
}
|
|
305
305
|
catch (err) {
|
|
306
306
|
throw new EastError(`Failed to read XLSX file info: ${err.message}`, {
|
|
307
|
-
location: { filename: "xlsx_info", line: 0n, column: 0n },
|
|
307
|
+
location: [{ filename: "xlsx_info", line: 0n, column: 0n }],
|
|
308
308
|
cause: err
|
|
309
309
|
});
|
|
310
310
|
}
|
package/dist/format/xlsx.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"xlsx.js","sourceRoot":"","sources":["../../src/format/xlsx.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;;GAOG;AAEH,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,eAAe,CAAC;AAG/D,OAAO,EAAE,SAAS,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AACrE,OAAO,KAAK,IAAI,MAAM,MAAM,CAAC;AAC7B,OAAO,EACH,aAAa,EACb,mBAAmB,EACnB,oBAAoB,EACpB,YAAY,GACf,MAAM,YAAY,CAAC;AAEpB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgDG;AACH,MAAM,CAAC,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,EAAE,CAAC,QAAQ,EAAE,mBAAmB,CAAC,EAAE,aAAa,CAAC,CAAC;AACpG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgDG;AACH,MAAM,CAAC,MAAM,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,YAAY,EAAE,CAAC,aAAa,EAAE,oBAAoB,CAAC,EAAE,QAAQ,CAAC,CAAC;AAEvG;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAM,CAAC,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,EAAE,CAAC,QAAQ,CAAC,EAAE,YAAY,CAAC,CAAC;AAE9E;;;;;;GAMG;AACH,SAAS,oBAAoB,CAAC,KAA2C;IACrE,OAAO,KAAK,CAAC,KAAK,EAAE;QAChB,IAAI,EAAE,GAAG,EAAE,CAAC,IAAI;QAChB,MAAM,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;QAChB,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,EAAG,qCAAqC;QACjE,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;QACf,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;QACjB,QAAQ,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,EAAG,sBAAsB;QAC3C,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE,EAAG,wCAAwC;KACvE,CAAC,CAAC;AACP,CAAC;AAED;;;;;GAKG;AACH,MAAM,CAAC,MAAM,QAAQ,GAAuB;IACxC,SAAS,CAAC,SAAS,CAAC,CAChB,IAAkC,EAClC,OAAgD,EACf,EAAE;QACnC,IAAI,CAAC;YACD,oCAAoC;YACpC,MAAM,MAAM,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YAEjC,0EAA0E;YAC1E,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;YAExE,gCAAgC;YAChC,IAAI,SAAiB,CAAC;YACtB,IAAI,OAAO,CAAC,SAAS,EAAE,IAAI,KAAK,MAAM,EAAE,CAAC;gBACrC,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC,KAAK,CAAC;gBACpC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE,CAAC;oBAC9B,MAAM,IAAI,SAAS,CAAC,UAAU,SAAS,yBAAyB,EAAE;wBAC9D,QAAQ,EAAE,EAAE,QAAQ,EAAE,WAAW,EAAE,IAAI,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;
|
|
1
|
+
{"version":3,"file":"xlsx.js","sourceRoot":"","sources":["../../src/format/xlsx.ts"],"names":[],"mappings":"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"}
|