@chevre/factory 4.279.0-alpha.5 → 4.280.0-alpha.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.
@@ -1,9 +1,7 @@
1
1
  import { AccountType } from '../../accountType';
2
2
  import * as ActionFactory from '../../action';
3
- import { ActionStatusType } from '../../actionStatusType';
4
3
  import { ActionType } from '../../actionType';
5
4
  import { IMonetaryAmount } from '../../monetaryAmount';
6
- import { SortType } from '../../sortType';
7
5
  import { IThing } from '../../thing';
8
6
  import { AccountTransactionType } from '../transactionType';
9
7
  export declare type IAgent = ActionFactory.IParticipant;
@@ -90,82 +88,3 @@ export interface IAttributes extends ActionFactory.IAttributes<ActionType.MoneyT
90
88
  toLocation: ILocation;
91
89
  }
92
90
  export declare type IAction = ActionFactory.IAction<IAttributes>;
93
- /**
94
- * ソート条件
95
- */
96
- export interface ISortOrder {
97
- /**
98
- * 開始日時
99
- */
100
- startDate?: SortType;
101
- }
102
- export interface IProjectSearchConditions {
103
- id?: {
104
- $eq?: string;
105
- $ne?: string;
106
- };
107
- }
108
- /**
109
- * 検索条件
110
- */
111
- export interface ISearchConditions {
112
- limit?: number;
113
- page?: number;
114
- sort?: ISortOrder;
115
- actionStatus?: {
116
- $in?: ActionStatusType[];
117
- };
118
- amount?: {
119
- /**
120
- * 通貨
121
- */
122
- currency?: {
123
- $eq?: string;
124
- };
125
- };
126
- location?: {
127
- /**
128
- * 口座番号
129
- */
130
- accountNumber?: {
131
- $eq?: string;
132
- };
133
- /**
134
- * 口座種別
135
- */
136
- typeOf?: {
137
- $eq?: string;
138
- };
139
- };
140
- project?: IProjectSearchConditions;
141
- purpose?: {
142
- /**
143
- * 取引タイプ
144
- */
145
- typeOf?: {
146
- $eq?: string;
147
- };
148
- /**
149
- * 取引ID
150
- */
151
- id?: {
152
- $eq?: string;
153
- };
154
- /**
155
- * 取引番号
156
- */
157
- transactionNumber?: {
158
- $eq?: string;
159
- };
160
- /**
161
- * 取引識別子
162
- */
163
- identifier?: {
164
- $eq?: string;
165
- };
166
- };
167
- startDate?: {
168
- $gte?: Date;
169
- $lte?: Date;
170
- };
171
- }
@@ -318,7 +318,7 @@ export declare type IEvent = EventFactory.IEvent<IAttributes>;
318
318
  export declare type ILocation4create = Pick<ILocation, 'branchCode' | 'maximumAttendeeCapacity'>;
319
319
  export declare type ISuperEvent4create = Pick<ISuperEvent, 'id'>;
320
320
  export declare type ISeller4create = Pick<ISeller, 'id' | 'makesOffer'>;
321
- export declare type IOffers4create = Pick<IOffer, 'availabilityEnds' | 'availabilityStarts' | 'validFrom' | 'validThrough' | 'unacceptedPaymentMethod'> & {
321
+ export declare type IOffers4create = Pick<IOffer, 'unacceptedPaymentMethod'> & {
322
322
  /**
323
323
  * 最大予約数を指定
324
324
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.279.0-alpha.5",
3
+ "version": "4.280.0-alpha.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",