@chevre/factory 4.185.0 → 4.186.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.
package/lib/factory/order.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ import * as PermitFactory from './permit';
|
|
|
13
13
|
import { IIdentifier as IPersonIdentifier, IPerson, IProfile } from './person';
|
|
14
14
|
import PersonType from './personType';
|
|
15
15
|
import PriceCurrency from './priceCurrency';
|
|
16
|
+
import { ProductType } from './product';
|
|
16
17
|
import { IPropertyValue } from './propertyValue';
|
|
17
18
|
import { IProgramMembershipUsedSearchConditions } from './reservation';
|
|
18
19
|
import * as EventReservationFactory from './reservation/event';
|
|
@@ -332,25 +333,60 @@ export interface ICustomerSearchConditions {
|
|
|
332
333
|
};
|
|
333
334
|
}
|
|
334
335
|
export interface IPaymentMethodsSearchConditions {
|
|
336
|
+
/**
|
|
337
|
+
* 決済アカウントID
|
|
338
|
+
* ムビチケ購入番号、ペイメントカード番号など
|
|
339
|
+
*/
|
|
335
340
|
accountIds?: string[];
|
|
341
|
+
/**
|
|
342
|
+
* 決済方法区分コード
|
|
343
|
+
*/
|
|
336
344
|
typeOfs?: AvailablePaymentMethodType[];
|
|
345
|
+
/**
|
|
346
|
+
* 決済方法ID
|
|
347
|
+
* 決済代行オーダーIDなど
|
|
348
|
+
*/
|
|
337
349
|
paymentMethodIds?: string[];
|
|
338
350
|
}
|
|
339
351
|
export interface IAcceptedOffersSearchConditions {
|
|
340
352
|
itemOffered?: {
|
|
353
|
+
/**
|
|
354
|
+
* アイテムタイプ
|
|
355
|
+
* 現状、EventReservation or Permit
|
|
356
|
+
*/
|
|
341
357
|
typeOf?: {
|
|
342
358
|
$in?: string[];
|
|
343
359
|
};
|
|
360
|
+
/**
|
|
361
|
+
* アイテムコード
|
|
362
|
+
* メンバーシップコード、ペイメントカード番号など
|
|
363
|
+
*/
|
|
344
364
|
identifier?: {
|
|
345
365
|
$in?: string[];
|
|
346
366
|
};
|
|
347
367
|
issuedThrough?: {
|
|
368
|
+
/**
|
|
369
|
+
* 発行サービスID
|
|
370
|
+
*/
|
|
348
371
|
id?: {
|
|
349
372
|
$in?: string[];
|
|
350
373
|
};
|
|
374
|
+
/**
|
|
375
|
+
* 発行サービスタイプ
|
|
376
|
+
*/
|
|
377
|
+
typeOf?: {
|
|
378
|
+
$eq?: ProductType;
|
|
379
|
+
};
|
|
351
380
|
};
|
|
381
|
+
/**
|
|
382
|
+
* アイテムID
|
|
383
|
+
* 予約IDなど
|
|
384
|
+
*/
|
|
352
385
|
ids?: string[];
|
|
353
386
|
reservationFor?: IReservationForSearchConditions;
|
|
387
|
+
/**
|
|
388
|
+
* 予約番号
|
|
389
|
+
*/
|
|
354
390
|
reservationNumbers?: string[];
|
|
355
391
|
/**
|
|
356
392
|
* 使用メンバーシップ
|