@chevre/factory 4.389.0-alpha.7 → 4.389.0-alpha.9
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/schedule.d.ts +19 -1
- package/lib/unitPriceOffer.d.ts +4 -0
- package/package.json +1 -1
package/lib/schedule.d.ts
CHANGED
|
@@ -1,15 +1,33 @@
|
|
|
1
|
+
import { IAvailableAtOrFrom } from './offer';
|
|
1
2
|
import { OrganizationType } from './organizationType';
|
|
2
3
|
export interface ISchedule4ttts {
|
|
3
4
|
project: {
|
|
4
5
|
id: string;
|
|
5
6
|
typeOf: OrganizationType.Project;
|
|
6
7
|
};
|
|
8
|
+
id?: string;
|
|
9
|
+
offers?: {
|
|
10
|
+
itemOffered?: {
|
|
11
|
+
/**
|
|
12
|
+
* 興行ID
|
|
13
|
+
*/
|
|
14
|
+
id?: string;
|
|
15
|
+
};
|
|
16
|
+
seller?: {
|
|
17
|
+
/**
|
|
18
|
+
* 販売アプリケーション設定
|
|
19
|
+
*/
|
|
20
|
+
makesOffer?: {
|
|
21
|
+
availableAtOrFrom: IAvailableAtOrFrom;
|
|
22
|
+
}[];
|
|
23
|
+
};
|
|
24
|
+
};
|
|
7
25
|
film: string;
|
|
8
26
|
theater: string;
|
|
9
27
|
/**
|
|
10
28
|
* 興行プロダクトID
|
|
29
|
+
* @deprecated use offers.itemOffered.id
|
|
11
30
|
*/
|
|
12
|
-
eventServiceProductID?: string;
|
|
13
31
|
duration: number;
|
|
14
32
|
noPerformanceTimes: string[];
|
|
15
33
|
/**
|
package/lib/unitPriceOffer.d.ts
CHANGED
|
@@ -52,6 +52,10 @@ export interface ISettings {
|
|
|
52
52
|
* 区分加算料金を適用しない
|
|
53
53
|
*/
|
|
54
54
|
ignoreCategoryCodeChargeSpec?: boolean;
|
|
55
|
+
/**
|
|
56
|
+
* 予約集計対象かどうか(2024-11-09~)
|
|
57
|
+
*/
|
|
58
|
+
includedInAggregateReservation?: boolean;
|
|
55
59
|
}
|
|
56
60
|
export interface IAdvanceBookingRequirement extends Pick<IQuantitativeValue<UnitCode.Sec>, 'typeOf' | 'minValue' | 'unitCode' | 'description'> {
|
|
57
61
|
}
|