@chevre/factory 4.278.0-alpha.1 → 4.278.0-alpha.2

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.
@@ -367,6 +367,31 @@ export interface IOfferSearchConditions {
367
367
  };
368
368
  };
369
369
  };
370
+ seller?: {
371
+ makesOffer?: {
372
+ $elemMatch?: {
373
+ availabilityEnds?: {
374
+ $gte?: Date;
375
+ $lte?: Date;
376
+ };
377
+ availabilityStarts?: {
378
+ $gte?: Date;
379
+ $lte?: Date;
380
+ };
381
+ validFrom?: {
382
+ $gte?: Date;
383
+ $lte?: Date;
384
+ };
385
+ validThrough?: {
386
+ $gte?: Date;
387
+ $lte?: Date;
388
+ };
389
+ 'availableAtOrFrom.id'?: {
390
+ $eq?: string;
391
+ };
392
+ };
393
+ };
394
+ };
370
395
  }
371
396
  /**
372
397
  * イベント検索条件
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.278.0-alpha.1",
3
+ "version": "4.278.0-alpha.2",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",