@datapos/datapos-shared 0.3.535 → 0.3.536
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.
|
@@ -193,8 +193,8 @@ interface ListNodesResult {
|
|
|
193
193
|
* Preview object options.
|
|
194
194
|
*/
|
|
195
195
|
interface PreviewObjectOptions extends EngineOperationOptions {
|
|
196
|
-
chunkSize
|
|
197
|
-
extension
|
|
196
|
+
chunkSize: number | undefined;
|
|
197
|
+
extension: string | undefined;
|
|
198
198
|
path: string;
|
|
199
199
|
}
|
|
200
200
|
/**
|
|
@@ -208,7 +208,7 @@ interface RemoveRecordsOptions extends EngineOperationOptions {
|
|
|
208
208
|
* Retrieve chunks options.
|
|
209
209
|
*/
|
|
210
210
|
interface RetrieveChunksOptions extends EngineOperationOptions {
|
|
211
|
-
chunkSize
|
|
211
|
+
chunkSize: number | undefined;
|
|
212
212
|
encodingId: string;
|
|
213
213
|
path: string;
|
|
214
214
|
valueDelimiterId: ValueDelimiterId;
|
|
@@ -217,7 +217,7 @@ interface RetrieveChunksOptions extends EngineOperationOptions {
|
|
|
217
217
|
* Retrieve records options and summary.
|
|
218
218
|
*/
|
|
219
219
|
interface RetrieveRecordsOptions extends EngineOperationOptions {
|
|
220
|
-
chunkSize
|
|
220
|
+
chunkSize: number | undefined;
|
|
221
221
|
encodingId: string;
|
|
222
222
|
path: string;
|
|
223
223
|
valueDelimiterId: ValueDelimiterId;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datapos/datapos-shared",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.536",
|
|
4
4
|
"description": "A library containing common constants, types and utilities used across all Data Positioning projects.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Jonathan Terrell <terrell.jm@gmail.com>",
|