@chevre/factory 4.329.0-alpha.11 → 4.329.0-alpha.13

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.
@@ -113,10 +113,15 @@ export interface IObjectWithoutDetail4COA {
113
113
  export declare type IAcceptedOffer<T extends WebAPIFactory.Identifier> = T extends WebAPIFactory.Identifier.COA ? IAcceptedOffer4COA : T extends WebAPIFactory.Identifier.Chevre ? IAcceptedOffer4chevre : never;
114
114
  export declare type IAcceptedOfferWithoutDetail<T extends WebAPIFactory.Identifier> = T extends WebAPIFactory.Identifier.COA ? IAcceptedOfferWithoutDetail4COA : T extends WebAPIFactory.Identifier.Chevre ? IAcceptedOfferWithoutDetail4chevre : never;
115
115
  export declare type IObjectWithoutDetail<T extends WebAPIFactory.Identifier> = T extends WebAPIFactory.Identifier.COA ? IObjectWithoutDetail4COA : T extends WebAPIFactory.Identifier.Chevre ? IObjectWithoutDetail4chevre : never;
116
- export interface IPendingTransaction {
117
- typeOf: AssetTransactionType.Reserve;
116
+ export declare type ICOAPendingTransaction = Pick<COA.factory.reserve.IDelTmpReserveArgs, 'theaterCode' | 'dateJouei' | 'titleCode' | 'titleBranchNum' | 'timeBegin' | 'tmpReserveNum'> & {
117
+ transactionNumber: string;
118
+ typeOf: 'COAReserveTransaction';
119
+ };
120
+ export interface IChevrePendingTransaction {
118
121
  transactionNumber: string;
122
+ typeOf: AssetTransactionType.Reserve;
119
123
  }
124
+ export declare type IPendingTransaction<T extends WebAPIFactory.Identifier> = T extends WebAPIFactory.Identifier.COA ? ICOAPendingTransaction : T extends WebAPIFactory.Identifier.Chevre ? IChevrePendingTransaction : never;
120
125
  export declare type IEvent = Pick<ScreeningEventFactory.IEvent, 'id' | 'typeOf'> & {
121
126
  offers: {
122
127
  offeredThrough: ScreeningEventFactory.IOfferedThrough;
@@ -130,9 +135,9 @@ export declare type IObject<T extends WebAPIFactory.Identifier> = {
130
135
  event?: IEvent;
131
136
  acceptedOffer: IAcceptedOffer<T>[];
132
137
  /**
133
- * Chevre進行中取引
138
+ * 進行中取引
134
139
  */
135
- pendingTransaction?: IPendingTransaction;
140
+ pendingTransaction?: IPendingTransaction<T>;
136
141
  } & Omit<IObjectWithoutDetail<T>, 'acceptedOffer' | 'reservationFor'>;
137
142
  export interface IPurpose {
138
143
  typeOf: TransactionType.PlaceOrder;
@@ -151,6 +156,6 @@ export interface IAttributes<T extends WebAPIFactory.Identifier> extends Authori
151
156
  instrument: IInstrument<T>;
152
157
  }
153
158
  /**
154
- * イベントオファー承認アクション
159
+ * 興行オファー承認アクション
155
160
  */
156
161
  export declare type IAction<T extends WebAPIFactory.Identifier> = ActionFactory.IAction<IAttributes<T>>;
@@ -250,5 +250,13 @@ export interface ISearchConditions {
250
250
  id?: {
251
251
  $in?: string[];
252
252
  };
253
+ includedInDataCatalog?: {
254
+ /**
255
+ * 記載カタログID
256
+ */
257
+ id?: {
258
+ $in?: string[];
259
+ };
260
+ };
253
261
  };
254
262
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.329.0-alpha.11",
3
+ "version": "4.329.0-alpha.13",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",