@chevre/factory 4.348.0 → 4.350.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/offerCatalog.d.ts
CHANGED
package/lib/product.d.ts
CHANGED
|
@@ -95,7 +95,7 @@ export interface IProduct extends Pick<IThing, 'name' | 'description'> {
|
|
|
95
95
|
name?: Pick<IMultilingualString, 'en' | 'ja'>;
|
|
96
96
|
/**
|
|
97
97
|
* The product identifier, such as ISBN. For example: meta itemprop="productID" content="isbn:123-456-789".
|
|
98
|
-
*
|
|
98
|
+
* プロジェクト内でユニークなプロダクトコード
|
|
99
99
|
*/
|
|
100
100
|
productID: string;
|
|
101
101
|
/**
|
|
@@ -104,7 +104,7 @@ export interface IService extends Pick<IThing, 'name' | 'description'> {
|
|
|
104
104
|
name?: Pick<IMultilingualString, 'en' | 'ja'>;
|
|
105
105
|
/**
|
|
106
106
|
* The product identifier, such as ISBN.
|
|
107
|
-
*
|
|
107
|
+
* プロジェクト内でユニークなプロダクトコード
|
|
108
108
|
*/
|
|
109
109
|
productID: string;
|
|
110
110
|
/**
|
package/lib/unitPriceOffer.d.ts
CHANGED
|
@@ -150,6 +150,10 @@ export interface ISortOrder {
|
|
|
150
150
|
*/
|
|
151
151
|
export interface IPriceSpecificationSearchConditions {
|
|
152
152
|
appliesToMovieTicket?: {
|
|
153
|
+
/**
|
|
154
|
+
* 適用決済カード数
|
|
155
|
+
*/
|
|
156
|
+
$size?: number;
|
|
153
157
|
/**
|
|
154
158
|
* 適用決済カード区分
|
|
155
159
|
*/
|
|
@@ -162,7 +166,7 @@ export interface IPriceSpecificationSearchConditions {
|
|
|
162
166
|
};
|
|
163
167
|
serviceOutput?: {
|
|
164
168
|
/**
|
|
165
|
-
*
|
|
169
|
+
* 適用決済方法区分
|
|
166
170
|
*/
|
|
167
171
|
typeOf?: {
|
|
168
172
|
$eq?: string;
|