@chevre/factory 4.323.0 → 4.324.0-alpha.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.
- package/lib/invoice.d.ts +3 -1
- package/lib/offer.d.ts +3 -1
- package/package.json +1 -1
package/lib/invoice.d.ts
CHANGED
|
@@ -66,7 +66,9 @@ export interface IPaymentMethod {
|
|
|
66
66
|
typeOf: PaymentServiceType;
|
|
67
67
|
serviceOutput?: IPaymentServiceOutput;
|
|
68
68
|
}
|
|
69
|
-
export declare type ITotalPaymentDue = Pick<IMonetaryAmount, 'typeOf' | 'currency' | 'value'
|
|
69
|
+
export declare type ITotalPaymentDue = Pick<IMonetaryAmount, 'typeOf' | 'currency' | 'value'> & {
|
|
70
|
+
value: number;
|
|
71
|
+
};
|
|
70
72
|
/**
|
|
71
73
|
* インボイス
|
|
72
74
|
* {@link https://schema.org/Invoice}
|
package/lib/offer.d.ts
CHANGED
|
@@ -22,7 +22,9 @@ export interface ICategory {
|
|
|
22
22
|
codeValue?: string;
|
|
23
23
|
}
|
|
24
24
|
export declare type IEligibleCategoryCode = Pick<ICategoryCode, 'typeOf' | 'id' | 'codeValue' | 'inCodeSet'>;
|
|
25
|
-
export declare type IEligibleMonetaryAmount = Pick<IMonetaryAmount, 'typeOf' | 'currency' | 'value'
|
|
25
|
+
export declare type IEligibleMonetaryAmount = Pick<IMonetaryAmount, 'typeOf' | 'currency' | 'value'> & {
|
|
26
|
+
value: number;
|
|
27
|
+
};
|
|
26
28
|
/**
|
|
27
29
|
* 適用サブ予約条件
|
|
28
30
|
*/
|