@chevre/domain 21.16.0-alpha.0 → 21.16.0
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.
|
@@ -26,7 +26,7 @@ import type { Connection, FilterQuery } from 'mongoose';
|
|
|
26
26
|
import * as factory from '../factory';
|
|
27
27
|
type IKeyOfProjection = keyof factory.order.IOrder | '_id';
|
|
28
28
|
type IProjection4searchWithUnwoundAcceptedOffer = {
|
|
29
|
-
[key in
|
|
29
|
+
[key in keyof Omit<factory.order.IOrder, 'acceptedOffers'>]?: 1;
|
|
30
30
|
} & {
|
|
31
31
|
_id?: 0 | 1;
|
|
32
32
|
acceptedOffers?: ['$acceptedOffers'];
|
package/package.json
CHANGED