@chevre/factory 4.357.0 → 4.358.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.
|
@@ -15,16 +15,21 @@ export interface ILocation {
|
|
|
15
15
|
*/
|
|
16
16
|
identifier: string;
|
|
17
17
|
}
|
|
18
|
-
export type IPotentialActions = any;
|
|
19
18
|
export interface IInstrument {
|
|
19
|
+
/**
|
|
20
|
+
* JWT
|
|
21
|
+
*/
|
|
20
22
|
token?: string;
|
|
23
|
+
/**
|
|
24
|
+
* 承認コード
|
|
25
|
+
*/
|
|
26
|
+
ticketToken?: string;
|
|
21
27
|
typeOf: ObjectType.Ticket;
|
|
22
28
|
}
|
|
23
29
|
export interface IAttributes extends UseActionFactory.IAttributes<IObject, IResult> {
|
|
24
30
|
agent: IAgent;
|
|
25
|
-
instrument
|
|
31
|
+
instrument: IInstrument;
|
|
26
32
|
location?: ILocation;
|
|
27
|
-
potentialActions?: IPotentialActions;
|
|
28
33
|
}
|
|
29
34
|
/**
|
|
30
35
|
* 予約使用アクション
|