@chevre/factory 4.289.0-alpha.14 → 4.289.0-alpha.15

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/lib/offer.d.ts CHANGED
@@ -16,11 +16,10 @@ import { UnitCode } from './unitCode';
16
16
  * オファーカテゴリー
17
17
  */
18
18
  export interface ICategory {
19
- project: Pick<IProject, 'id' | 'typeOf'>;
20
19
  id?: string;
21
20
  codeValue?: string;
22
21
  }
23
- export declare type IEligibleCategoryCode = Pick<ICategoryCode, 'project' | 'typeOf' | 'id' | 'codeValue' | 'inCodeSet'>;
22
+ export declare type IEligibleCategoryCode = Pick<ICategoryCode, 'typeOf' | 'id' | 'codeValue' | 'inCodeSet'>;
24
23
  export declare type IEligibleMonetaryAmount = Pick<IMonetaryAmount, 'typeOf' | 'currency' | 'value'>;
25
24
  /**
26
25
  * 適用サブ予約条件
package/lib/product.d.ts CHANGED
@@ -266,4 +266,5 @@ export interface ITicketOffer extends Pick<IBaseOffer, 'name' | 'description' |
266
266
  identifier: string;
267
267
  priceSpecification: ITicketPriceSpecification;
268
268
  itemOffered?: UnitPriceOfferFactory.IItemOffered;
269
+ sortIndex?: number;
269
270
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.289.0-alpha.14",
3
+ "version": "4.289.0-alpha.15",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",