@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 +1 -2
- package/lib/product.d.ts +1 -0
- package/package.json +1 -1
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, '
|
|
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