@chevre/factory 4.321.0 → 4.322.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.
|
@@ -83,19 +83,29 @@ export declare type IAcceptedOffer4COA = Pick<ReserveTransactionFactory.IAccepte
|
|
|
83
83
|
price: number;
|
|
84
84
|
priceSpecification: OrderFactory.ITicketPriceSpecification;
|
|
85
85
|
};
|
|
86
|
+
export interface IAppliesToSurfrock {
|
|
87
|
+
/**
|
|
88
|
+
* コード
|
|
89
|
+
*/
|
|
90
|
+
identifier?: string;
|
|
91
|
+
serviceOutput?: {
|
|
92
|
+
/**
|
|
93
|
+
* 決済方法区分
|
|
94
|
+
*/
|
|
95
|
+
typeOf?: string;
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
export interface IPriceSpecification4COA {
|
|
99
|
+
appliesToSurfrock?: IAppliesToSurfrock;
|
|
100
|
+
}
|
|
86
101
|
export declare type IAcceptedOfferBeforeAuthorize4COA = Pick<ReserveTransactionFactory.IAcceptedTicketOfferWithoutDetail, 'itemOffered' | 'additionalProperty'> & Pick<OfferFactory.IOffer, 'name' | 'additionalProperty'> & {
|
|
87
102
|
itemOffered: ReserveTransactionFactory.IAcceptedTicketOfferItemOffered;
|
|
88
103
|
ticketInfo: Omit<ICOATicketInfoWithDetails, 'salePrice' | 'usePoint'>;
|
|
89
|
-
priceSpecification:
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
typeOf?: string;
|
|
94
|
-
};
|
|
95
|
-
};
|
|
96
|
-
};
|
|
104
|
+
priceSpecification: IPriceSpecification4COA;
|
|
105
|
+
};
|
|
106
|
+
export declare type IAcceptedOfferWithoutDetail4COA = COAReservationOfferFactory.IOffer & {
|
|
107
|
+
priceSpecification?: IPriceSpecification4COA;
|
|
97
108
|
};
|
|
98
|
-
export declare type IAcceptedOfferWithoutDetail4COA = COAReservationOfferFactory.IOffer;
|
|
99
109
|
export interface IObjectWithoutDetail4COA {
|
|
100
110
|
acceptedOffer: IAcceptedOfferWithoutDetail4COA[];
|
|
101
111
|
event: {
|
|
@@ -4,19 +4,19 @@ import * as OfferFactory from '../offer';
|
|
|
4
4
|
import { IProject } from '../project';
|
|
5
5
|
import { SortType } from '../sortType';
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* コンテンツに対するオファー
|
|
8
|
+
* 最適化(2023-08-01~)
|
|
8
9
|
*/
|
|
9
|
-
export
|
|
10
|
-
}
|
|
10
|
+
export declare type IOffer = Pick<OfferFactory.IOffer, 'typeOf' | 'availabilityEnds' | 'availabilityStarts'>;
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
12
|
+
* 配給者
|
|
13
13
|
*/
|
|
14
14
|
export interface IDistributor {
|
|
15
15
|
id?: string;
|
|
16
16
|
codeValue?: string;
|
|
17
17
|
}
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* コンテンツ
|
|
20
20
|
* {@link https://schema.org/Movie}
|
|
21
21
|
*/
|
|
22
22
|
export interface ICreativeWork extends CreativeWorkFactory.ICreativeWork {
|
|
@@ -30,14 +30,14 @@ export interface ICreativeWork extends CreativeWorkFactory.ICreativeWork {
|
|
|
30
30
|
/**
|
|
31
31
|
* 販売情報
|
|
32
32
|
*/
|
|
33
|
-
offers
|
|
33
|
+
offers: IOffer;
|
|
34
34
|
/**
|
|
35
35
|
* 配給者
|
|
36
36
|
*/
|
|
37
37
|
distributor?: IDistributor;
|
|
38
38
|
}
|
|
39
39
|
/**
|
|
40
|
-
*
|
|
40
|
+
* ソート条件
|
|
41
41
|
*/
|
|
42
42
|
export interface ISortOrder {
|
|
43
43
|
identifier?: SortType;
|
|
@@ -47,7 +47,7 @@ export interface IOfferSearchConditions {
|
|
|
47
47
|
availableThrough?: Date;
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
|
-
*
|
|
50
|
+
* 検索条件
|
|
51
51
|
*/
|
|
52
52
|
export interface ISearchConditions {
|
|
53
53
|
limit?: number;
|