@chevre/factory 4.374.0-alpha.15 → 4.374.0-alpha.17

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;
@@ -163,6 +163,10 @@ export type IObject<T extends WebAPIFactory.Identifier> = {
163
163
  typeOf: ObjectType;
164
164
  event?: IEvent;
165
165
  acceptedOffer: IAcceptedOffer<T>[];
166
+ /**
167
+ * recipe有(仮予約時)のCOA興行オファー採用アクションID(2024-06-11~)
168
+ */
169
+ id?: string;
166
170
  /**
167
171
  * 進行中取引
168
172
  */
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.374.0-alpha.15",
3
+ "version": "4.374.0-alpha.17",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",