@chevre/factory 4.339.0 → 4.341.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.
@@ -8,7 +8,7 @@ import { IPriceSpecification as ICompoundPriceSpecification } from '../priceSpec
8
8
  /**
9
9
  * 座席に対する価格構成要素
10
10
  */
11
- export type IPriceComponent = ICategoryCodeChargeSpecification;
11
+ export type IPriceComponent = Pick<ICategoryCodeChargeSpecification, 'appliesToCategoryCode' | 'name' | 'price' | 'priceCurrency' | 'typeOf' | 'valueAddedTaxIncluded'>;
12
12
  /**
13
13
  * 座席に対する価格仕様
14
14
  */
package/lib/project.d.ts CHANGED
@@ -96,6 +96,9 @@ export interface ISearchConditions {
96
96
  limit?: number;
97
97
  page?: number;
98
98
  sort?: ISortOrder;
99
+ id?: {
100
+ $eq?: string;
101
+ };
99
102
  ids?: string[];
100
103
  /**
101
104
  * 名称
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.339.0",
3
+ "version": "4.341.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",