@chevre/factory 4.332.0 → 4.334.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.
|
@@ -36,17 +36,19 @@ export interface IOffer extends Pick<OfferFactory.IOffer, 'priceCurrency' | 'pro
|
|
|
36
36
|
*/
|
|
37
37
|
availabilityEndsGraceTimeOnPOS: IAvailabilityEndsGraceTime;
|
|
38
38
|
}
|
|
39
|
-
export declare type POSType = 'POS';
|
|
40
39
|
/**
|
|
41
|
-
*
|
|
42
|
-
* 管理者が識別しやすいようPOSの属性を指定します
|
|
40
|
+
* 施設の操作するPoints-of-Sales
|
|
43
41
|
*/
|
|
44
42
|
export interface IPOS {
|
|
45
|
-
typeOf: POSType;
|
|
46
43
|
/**
|
|
47
44
|
* コード
|
|
45
|
+
* @deprecated Use branchCode(2023-09-27~)
|
|
48
46
|
*/
|
|
49
47
|
id: string;
|
|
48
|
+
/**
|
|
49
|
+
* コード
|
|
50
|
+
*/
|
|
51
|
+
branchCode: string;
|
|
50
52
|
/**
|
|
51
53
|
* 名称
|
|
52
54
|
*/
|
|
@@ -46,7 +46,26 @@ export interface IData4screeningRoom {
|
|
|
46
46
|
isDeleted: boolean;
|
|
47
47
|
useInform: boolean;
|
|
48
48
|
}
|
|
49
|
-
export
|
|
49
|
+
export interface IData4pos {
|
|
50
|
+
/**
|
|
51
|
+
* コード
|
|
52
|
+
*/
|
|
53
|
+
branchCode: string;
|
|
54
|
+
operator: {
|
|
55
|
+
/**
|
|
56
|
+
* 施設ID
|
|
57
|
+
*/
|
|
58
|
+
id: string;
|
|
59
|
+
};
|
|
60
|
+
project: {
|
|
61
|
+
id: string;
|
|
62
|
+
};
|
|
63
|
+
typeOf: 'POS';
|
|
64
|
+
isNew: boolean;
|
|
65
|
+
isDeleted: boolean;
|
|
66
|
+
useInform: boolean;
|
|
67
|
+
}
|
|
68
|
+
export declare type IData = IData4common | IData4screeningRoom | IData4pos;
|
|
50
69
|
export interface IAttributes extends TaskFactory.IAttributes {
|
|
51
70
|
name: TaskName.OnResourceUpdated;
|
|
52
71
|
data: IData;
|