@chevre/factory 4.374.0-alpha.14 → 4.374.0-alpha.16
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.
|
@@ -32,7 +32,7 @@ export interface IObject extends Pick<IObjectWithoutDetail<Identifier.COA>, 'acc
|
|
|
32
32
|
typeOf: OfferType.AggregateOffer;
|
|
33
33
|
}
|
|
34
34
|
export interface IAuthorizeCOAOfferResult {
|
|
35
|
-
responseBody: IUpdTmpReserveSeatResult
|
|
35
|
+
responseBody: Pick<IUpdTmpReserveSeatResult, 'tmpReserveNum'>;
|
|
36
36
|
}
|
|
37
37
|
export interface IResult {
|
|
38
38
|
/**
|
|
@@ -63,12 +63,8 @@ export interface IPotentialActions {
|
|
|
63
63
|
}
|
|
64
64
|
export interface IInstrument {
|
|
65
65
|
typeOf: 'COAReserveTransaction';
|
|
66
|
-
/**
|
|
67
|
-
* 仮予約実行時は存在する
|
|
68
|
-
*/
|
|
69
|
-
requestBody?: IUpdTmpReserveSeatArgs;
|
|
70
66
|
}
|
|
71
|
-
export interface IAttributes extends AcceptActionFactory.IAttributes<IObject, IResult> {
|
|
67
|
+
export interface IAttributes extends Pick<AcceptActionFactory.IAttributes<IObject, IResult>, 'agent' | 'error' | 'instrument' | 'object' | 'potentialActions' | 'purpose' | 'result' | 'project' | 'sameAs' | 'typeOf'> {
|
|
72
68
|
agent: IAgent;
|
|
73
69
|
instrument: IInstrument;
|
|
74
70
|
object: IObject;
|
|
@@ -25,7 +25,6 @@ export type IObject<T extends WebAPIFactory.Identifier> = T extends WebAPIFactor
|
|
|
25
25
|
export type IPurpose = ISimpleOrder;
|
|
26
26
|
export interface IResult {
|
|
27
27
|
}
|
|
28
|
-
export type IInstrument<T extends WebAPIFactory.Identifier> = WebAPIFactory.IService<T>;
|
|
29
28
|
export interface IAttributes<T extends WebAPIFactory.Identifier> extends ConfirmActionFactory.IAttributes<IObject<T>, IResult> {
|
|
30
29
|
agent: IAgent;
|
|
31
30
|
purpose: IPurpose;
|
|
@@ -3,7 +3,7 @@ import { IExtendId } from '../autoGenerated';
|
|
|
3
3
|
import * as WebAPIFactory from '../service/webAPI';
|
|
4
4
|
import * as TaskFactory from '../task';
|
|
5
5
|
import { TaskName } from '../taskName';
|
|
6
|
-
export type IData = IReturnActionAttributes<WebAPIFactory.Identifier>;
|
|
6
|
+
export type IData = Pick<IReturnActionAttributes<WebAPIFactory.Identifier>, 'agent' | 'instrument' | 'object' | 'project' | 'purpose' | 'recipient' | 'typeOf'>;
|
|
7
7
|
export interface IAttributes extends TaskFactory.IAttributes {
|
|
8
8
|
name: TaskName.ReturnReserveTransaction;
|
|
9
9
|
data: IData;
|