@karmaniverous/entity-manager 7.3.3 → 7.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +7 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -382,11 +382,11 @@ interface QueryOptions<CC extends BaseConfigMap, ET extends EntityToken<CC> = En
|
|
|
382
382
|
* number of shards queried, unless limited by available records in a given
|
|
383
383
|
* shard.
|
|
384
384
|
*/
|
|
385
|
-
limit?: number;
|
|
385
|
+
limit?: number | undefined;
|
|
386
386
|
/**
|
|
387
387
|
* {@link QueryResult.pageKeyMap | `pageKeyMap`} returned by the previous iteration of this query.
|
|
388
388
|
*/
|
|
389
|
-
pageKeyMap?: string;
|
|
389
|
+
pageKeyMap?: string | undefined;
|
|
390
390
|
/**
|
|
391
391
|
* The maximum number of records to be returned by each individual query to a
|
|
392
392
|
* single shard (i.e. {@link ShardQueryFunction | `ShardQueryFunction`} execution).
|
|
@@ -395,7 +395,7 @@ interface QueryOptions<CC extends BaseConfigMap, ET extends EntityToken<CC> = En
|
|
|
395
395
|
* repeated until either available data is exhausted or the {@link QueryOptions.limit | `limit`} value is
|
|
396
396
|
* reached.
|
|
397
397
|
*/
|
|
398
|
-
pageSize?: number;
|
|
398
|
+
pageSize?: number | undefined;
|
|
399
399
|
/**
|
|
400
400
|
* Each key in this object is a valid entity index token. Each value is a valid
|
|
401
401
|
* {@link ShardQueryFunction | 'ShardQueryFunction'} that specifies the query of a single page of data on a
|
|
@@ -409,7 +409,7 @@ interface QueryOptions<CC extends BaseConfigMap, ET extends EntityToken<CC> = En
|
|
|
409
409
|
/**
|
|
410
410
|
* A {@link SortOrder | `SortOrder`} object specifying the sort order of the result set. Defaults to `[]`. Aligned with the projected item shape when K is provided.
|
|
411
411
|
*/
|
|
412
|
-
sortOrder?: SortOrder<ProjectedItemByToken<CC, ET, K
|
|
412
|
+
sortOrder?: SortOrder<ProjectedItemByToken<CC, ET, K>> | undefined;
|
|
413
413
|
/**
|
|
414
414
|
* Lower limit to query shard space.
|
|
415
415
|
*
|
|
@@ -419,7 +419,7 @@ interface QueryOptions<CC extends BaseConfigMap, ET extends EntityToken<CC> = En
|
|
|
419
419
|
*
|
|
420
420
|
* @defaultValue `0`
|
|
421
421
|
*/
|
|
422
|
-
timestampFrom?: number;
|
|
422
|
+
timestampFrom?: number | undefined;
|
|
423
423
|
/**
|
|
424
424
|
* Upper limit to query shard space.
|
|
425
425
|
*
|
|
@@ -429,13 +429,13 @@ interface QueryOptions<CC extends BaseConfigMap, ET extends EntityToken<CC> = En
|
|
|
429
429
|
*
|
|
430
430
|
* @defaultValue `Date.now()`
|
|
431
431
|
*/
|
|
432
|
-
timestampTo?: number;
|
|
432
|
+
timestampTo?: number | undefined;
|
|
433
433
|
/**
|
|
434
434
|
* The maximum number of shards to query in parallel. Overrides options `throttle`.
|
|
435
435
|
*
|
|
436
436
|
* @defaultValue `options.throttle`
|
|
437
437
|
*/
|
|
438
|
-
throttle?: number;
|
|
438
|
+
throttle?: number | undefined;
|
|
439
439
|
}
|
|
440
440
|
/**
|
|
441
441
|
* Convenience alias for QueryOptions that derives ITS (index token subset)
|
package/package.json
CHANGED