@chevre/factory 4.313.0-alpha.6 → 4.313.0-alpha.8
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.
|
@@ -5,13 +5,28 @@ import { IQuantitativeValue } from './quantitativeValue';
|
|
|
5
5
|
import { ReservationType } from './reservationType';
|
|
6
6
|
import { SortType } from './sortType';
|
|
7
7
|
import { UnitCode } from './unitCode';
|
|
8
|
-
declare type IGracePeriodBeforeStart = Pick<IQuantitativeValue<UnitCode.Sec>, 'maxValue' | 'minValue' | 'typeOf' | 'unitCode'>;
|
|
8
|
+
export declare type IGracePeriodBeforeStart = Pick<IQuantitativeValue<UnitCode.Sec>, 'maxValue' | 'minValue' | 'typeOf' | 'unitCode'>;
|
|
9
|
+
export interface IGracePeriodBeforeStartInDays {
|
|
10
|
+
period: Pick<IQuantitativeValue<UnitCode.Day>, 'value' | 'typeOf' | 'unitCode'>;
|
|
11
|
+
time: string;
|
|
12
|
+
timezone: string;
|
|
13
|
+
}
|
|
9
14
|
export interface IItemOffered {
|
|
10
15
|
typeOf: ProductType.EventService;
|
|
11
16
|
serviceOutput?: {
|
|
12
17
|
typeOf: ReservationType.EventReservation;
|
|
13
18
|
reservationFor: {
|
|
19
|
+
/**
|
|
20
|
+
* n秒前設定
|
|
21
|
+
*/
|
|
14
22
|
gracePeriodBeforeStart?: IGracePeriodBeforeStart;
|
|
23
|
+
/**
|
|
24
|
+
* n日時前のHH:mm:ss設定
|
|
25
|
+
*/
|
|
26
|
+
gracePeriodBeforeStartInDays?: {
|
|
27
|
+
max?: IGracePeriodBeforeStartInDays;
|
|
28
|
+
min?: IGracePeriodBeforeStartInDays;
|
|
29
|
+
};
|
|
15
30
|
};
|
|
16
31
|
};
|
|
17
32
|
}
|
|
@@ -44,4 +59,3 @@ export interface ISearchConditions {
|
|
|
44
59
|
$in?: string[];
|
|
45
60
|
};
|
|
46
61
|
}
|
|
47
|
-
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IAttributes as IReturnOrderActionAttributes } from '../action/transfer/return/order';
|
|
2
2
|
import { IExtendId } from '../autoGenerated';
|
|
3
|
-
import { IMerchantReturnPolicy, ReturnFeesEnumeration } from '../merchantReturnPolicy';
|
|
3
|
+
import { ICustomerRemorseReturnFeesMovieTicket, IMerchantReturnPolicy, ReturnFeesEnumeration } from '../merchantReturnPolicy';
|
|
4
4
|
import { IProject } from '../project';
|
|
5
5
|
import * as TransactionFactory from '../transaction';
|
|
6
6
|
import { TransactionType } from '../transactionType';
|
|
@@ -127,7 +127,13 @@ export interface IReturnFeesMovieTicket {
|
|
|
127
127
|
/**
|
|
128
128
|
* 着券取消実行有無
|
|
129
129
|
*/
|
|
130
|
-
returnFees:
|
|
130
|
+
returnFees: ICustomerRemorseReturnFeesMovieTicket;
|
|
131
|
+
serviceOutput: {
|
|
132
|
+
/**
|
|
133
|
+
* 決済方法区分
|
|
134
|
+
*/
|
|
135
|
+
typeOf: string;
|
|
136
|
+
};
|
|
131
137
|
}
|
|
132
138
|
/**
|
|
133
139
|
* 取引に適用される返品ポリシー
|