@chevre/factory 9.4.0 → 9.5.0-alpha.1
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.
|
@@ -29,23 +29,28 @@ export type IEventInObject = Pick<IEvent, 'id' | 'typeOf'>;
|
|
|
29
29
|
export interface IObject {
|
|
30
30
|
typeOf: ObjectType.SeatReservation;
|
|
31
31
|
event?: IEventInObject;
|
|
32
|
-
|
|
32
|
+
id?: never;
|
|
33
|
+
pendingTransaction?: never;
|
|
34
|
+
}
|
|
35
|
+
export interface IObject4COA {
|
|
36
|
+
typeOf: ObjectType.SeatReservation;
|
|
37
|
+
event?: IEventInObject;
|
|
33
38
|
/**
|
|
34
39
|
* recipe有(仮予約時)のCOA興行オファー採用アクションID(2024-06-11~)
|
|
35
40
|
*/
|
|
36
|
-
id
|
|
41
|
+
id: string;
|
|
37
42
|
/**
|
|
38
43
|
* COA進行中取引(仮予約削除時に利用)
|
|
39
44
|
* discontinue on Chevre(2024-06-22~)
|
|
40
45
|
*/
|
|
41
46
|
pendingTransaction?: ICOAPendingTransaction;
|
|
42
47
|
}
|
|
43
|
-
export interface IAttributes extends IBaseAttributes<IObject, IResult> {
|
|
48
|
+
export interface IAttributes extends IBaseAttributes<IObject | IObject4COA, IResult> {
|
|
44
49
|
typeOf: ActionType.AuthorizeAction;
|
|
45
50
|
agent: IAgent;
|
|
46
51
|
instrument: IInstrumentAsAssetTransaction;
|
|
47
52
|
recipient: IRecipient;
|
|
48
|
-
object: IObject;
|
|
53
|
+
object: IObject | IObject4COA;
|
|
49
54
|
purpose: IPurpose;
|
|
50
55
|
}
|
|
51
56
|
/**
|
package/lib/chevre/action.d.ts
CHANGED