@chevre/factory 4.236.0 → 4.237.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/factory/categoryCode.d.ts +3 -3
- package/lib/factory/priceSpecification/categoryCodeChargeSpecification.d.ts +1 -1
- package/lib/factory/priceSpecification/movieTicketTypeChargeSpecification.d.ts +10 -11
- package/lib/factory/priceSpecification/unitPriceSpecification.d.ts +10 -4
- package/package.json +1 -1
|
@@ -66,13 +66,13 @@ export interface ICategoryCode extends IThing {
|
|
|
66
66
|
additionalProperty?: IPropertyValue<string>[];
|
|
67
67
|
paymentMethod?: {
|
|
68
68
|
/**
|
|
69
|
-
*
|
|
69
|
+
* 決済カード区分の場合、対応決済方法区分
|
|
70
70
|
*/
|
|
71
71
|
typeOf?: string;
|
|
72
72
|
};
|
|
73
73
|
}
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* 検索条件
|
|
76
76
|
*/
|
|
77
77
|
export interface ISearchConditions {
|
|
78
78
|
limit?: number;
|
|
@@ -101,7 +101,7 @@ export interface ISearchConditions {
|
|
|
101
101
|
};
|
|
102
102
|
paymentMethod?: {
|
|
103
103
|
/**
|
|
104
|
-
*
|
|
104
|
+
* 決済カード区分の場合、対応決済方法区分
|
|
105
105
|
*/
|
|
106
106
|
typeOf?: {
|
|
107
107
|
$eq?: string;
|
|
@@ -2,7 +2,7 @@ import { ICategoryCode } from '../categoryCode';
|
|
|
2
2
|
import { IPriceSpecification as BaseSpecification } from '../priceSpecification';
|
|
3
3
|
import { PriceSpecificationType } from '../priceSpecificationType';
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* 区分加算料金
|
|
6
6
|
*/
|
|
7
7
|
export declare type IPriceSpecification = BaseSpecification<PriceSpecificationType.CategoryCodeChargeSpecification> & {
|
|
8
8
|
price: number;
|
|
@@ -1,29 +1,28 @@
|
|
|
1
1
|
import { IPriceSpecification as BaseSpecification } from '../priceSpecification';
|
|
2
2
|
import { PriceSpecificationType } from '../priceSpecificationType';
|
|
3
3
|
import { PaymentServiceType } from '../service/paymentService';
|
|
4
|
-
export interface
|
|
4
|
+
export interface IAppliesToMovieTicket {
|
|
5
5
|
typeOf: PaymentServiceType.MovieTicket;
|
|
6
6
|
/**
|
|
7
|
-
* 購入管理番号
|
|
7
|
+
* 購入管理番号
|
|
8
8
|
*/
|
|
9
9
|
identifier?: string;
|
|
10
10
|
/**
|
|
11
|
-
* pinコード
|
|
11
|
+
* pinコード
|
|
12
12
|
*/
|
|
13
|
-
accessCode?: string;
|
|
14
13
|
/**
|
|
15
14
|
* 決済カード区分
|
|
16
15
|
*/
|
|
17
|
-
serviceType
|
|
18
|
-
serviceOutput
|
|
16
|
+
serviceType: string;
|
|
17
|
+
serviceOutput: {
|
|
19
18
|
/**
|
|
20
|
-
*
|
|
19
|
+
* 決済方法区分
|
|
21
20
|
*/
|
|
22
|
-
typeOf
|
|
21
|
+
typeOf: string;
|
|
23
22
|
};
|
|
24
23
|
}
|
|
25
24
|
/**
|
|
26
|
-
*
|
|
25
|
+
* 決済カード加算料金
|
|
27
26
|
*/
|
|
28
27
|
export declare type IPriceSpecification = BaseSpecification<PriceSpecificationType.MovieTicketTypeChargeSpecification> & {
|
|
29
28
|
price: number;
|
|
@@ -32,7 +31,7 @@ export declare type IPriceSpecification = BaseSpecification<PriceSpecificationTy
|
|
|
32
31
|
*/
|
|
33
32
|
appliesToVideoFormat: string;
|
|
34
33
|
/**
|
|
35
|
-
*
|
|
34
|
+
* 適用MovieTicket
|
|
36
35
|
*/
|
|
37
|
-
appliesToMovieTicket
|
|
36
|
+
appliesToMovieTicket: IAppliesToMovieTicket;
|
|
38
37
|
};
|
|
@@ -3,9 +3,15 @@ import { IPriceSpecification as BaseSpecification } from '../priceSpecification'
|
|
|
3
3
|
import { PriceSpecificationType } from '../priceSpecificationType';
|
|
4
4
|
import { IQuantitativeValue } from '../quantitativeValue';
|
|
5
5
|
import { UnitCode } from '../unitCode';
|
|
6
|
-
import { IMovieTicket } from './movieTicketTypeChargeSpecification';
|
|
6
|
+
import { IAppliesToMovieTicket as IMovieTicket } from './movieTicketTypeChargeSpecification';
|
|
7
|
+
export declare type IAppliesToMovieTicket = Omit<IMovieTicket, 'accessCode'> & {
|
|
8
|
+
/**
|
|
9
|
+
* 単価オファー設定としては存在しないが、予約あるいは注文の価格仕様としては必須
|
|
10
|
+
*/
|
|
11
|
+
identifier?: string;
|
|
12
|
+
};
|
|
7
13
|
/**
|
|
8
|
-
*
|
|
14
|
+
* 単価仕様
|
|
9
15
|
*/
|
|
10
16
|
export declare type IPriceSpecification = BaseSpecification<PriceSpecificationType.UnitPriceSpecification> & {
|
|
11
17
|
price: number;
|
|
@@ -14,9 +20,9 @@ export declare type IPriceSpecification = BaseSpecification<PriceSpecificationTy
|
|
|
14
20
|
*/
|
|
15
21
|
referenceQuantity: IQuantitativeValue<UnitCode>;
|
|
16
22
|
/**
|
|
17
|
-
*
|
|
23
|
+
* 適用MovieTicket
|
|
18
24
|
*/
|
|
19
|
-
appliesToMovieTicket?:
|
|
25
|
+
appliesToMovieTicket?: IAppliesToMovieTicket;
|
|
20
26
|
/**
|
|
21
27
|
* 適用アドオン
|
|
22
28
|
* アドオンを指定された場合に適用される
|