@chevre/factory 4.325.0-alpha.0 → 4.325.0-alpha.1

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.
@@ -53,6 +53,7 @@ export interface ISettings {
53
53
  }
54
54
  export interface IAdvanceBookingRequirement extends Pick<IQuantitativeValue<UnitCode.Sec>, 'typeOf' | 'minValue' | 'unitCode' | 'description'> {
55
55
  }
56
+ export declare type IAvailability = ItemAvailability.InStock | ItemAvailability.OutOfStock;
56
57
  /**
57
58
  * 単価オファー
58
59
  */
@@ -62,7 +63,7 @@ export interface IUnitPriceOffer extends Pick<IOffer, 'project' | 'typeOf' | 'pr
62
63
  * 事前予約要件(興行オファー承認日時とイベント開始日時の差)
63
64
  */
64
65
  advanceBookingRequirement?: IAdvanceBookingRequirement;
65
- availability: ItemAvailability;
66
+ availability: IAvailability;
66
67
  /**
67
68
  * コード
68
69
  */
@@ -148,6 +149,9 @@ export interface ISearchConditions {
148
149
  };
149
150
  };
150
151
  };
152
+ availability?: {
153
+ $eq?: IAvailability;
154
+ };
151
155
  availableAtOrFrom?: {
152
156
  id?: {
153
157
  $eq?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.325.0-alpha.0",
3
+ "version": "4.325.0-alpha.1",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",