@chevre/factory 4.258.0 → 4.259.0-alpha.10
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/chevre.d.ts +0 -7
- package/lib/chevre.js +3 -5
- package/lib/factory/account/action/moneyTransfer.d.ts +1 -1
- package/lib/factory/action/authorize/offer/product.d.ts +4 -4
- package/lib/factory/action/authorize/offer/seatReservation.d.ts +9 -9
- package/lib/factory/action/consume/use/reservation.d.ts +2 -1
- package/lib/factory/action/interact/confirm/pay.d.ts +1 -2
- package/lib/factory/action/trade/pay.d.ts +1 -1
- package/lib/factory/action/trade/refund.d.ts +1 -1
- package/lib/factory/action/transfer/return/order.d.ts +11 -6
- package/lib/factory/assetTransaction/registerService.d.ts +4 -2
- package/lib/factory/categoryCode.d.ts +10 -5
- package/lib/factory/creativeWork/message/email.d.ts +1 -1
- package/lib/factory/creativeWork.d.ts +1 -1
- package/lib/factory/event/screeningEvent.d.ts +5 -2
- package/lib/factory/event/screeningEventSeries.d.ts +29 -32
- package/lib/factory/event.d.ts +4 -7
- package/lib/factory/iam.d.ts +7 -2
- package/lib/factory/invoice.d.ts +1 -1
- package/lib/factory/merchantReturnPolicy.d.ts +9 -1
- package/lib/factory/monetaryAmount.d.ts +1 -1
- package/lib/factory/offer/merchantReturnPolicy.d.ts +37 -0
- package/lib/factory/{serviceType.js → offer/merchantReturnPolicy.js} +0 -0
- package/lib/factory/offer.d.ts +26 -11
- package/lib/factory/offerCatalog.d.ts +9 -6
- package/lib/factory/order.d.ts +22 -8
- package/lib/factory/organization.d.ts +1 -1
- package/lib/factory/ownershipInfo.d.ts +4 -4
- package/lib/factory/paymentMethod.d.ts +2 -2
- package/lib/factory/permit.d.ts +3 -4
- package/lib/factory/place/movieTheater.d.ts +28 -8
- package/lib/factory/place/screeningRoom.d.ts +1 -1
- package/lib/factory/place/screeningRoomSection.d.ts +1 -1
- package/lib/factory/place/seat.d.ts +1 -1
- package/lib/factory/place.d.ts +2 -2
- package/lib/factory/priceSpecification/categoryCodeChargeSpecification.d.ts +2 -1
- package/lib/factory/priceSpecification.d.ts +9 -1
- package/lib/factory/product.d.ts +5 -4
- package/lib/factory/programMembership.d.ts +1 -1
- package/lib/factory/quantitativeValue.d.ts +1 -1
- package/lib/factory/reservation/event.d.ts +1 -0
- package/lib/factory/reservation.d.ts +7 -7
- package/lib/factory/seller.d.ts +2 -2
- package/lib/factory/service/paymentService.d.ts +5 -6
- package/lib/factory/taskName.d.ts +0 -6
- package/lib/factory/taskName.js +0 -8
- package/lib/factory/transaction/returnOrder.d.ts +22 -2
- package/package.json +1 -1
- package/lib/factory/service.d.ts +0 -4
- package/lib/factory/service.js +0 -16
- package/lib/factory/serviceType.d.ts +0 -9
package/lib/factory/taskName.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IAttributes as IReturnOrderActionAttributes } from '../action/transfer/return/order';
|
|
2
2
|
import { IExtendId } from '../autoGenerated';
|
|
3
|
+
import { IMerchantReturnPolicy, ReturnFeesEnumeration } from '../merchantReturnPolicy';
|
|
3
4
|
import { IProject } from '../project';
|
|
4
|
-
import { ISellerMerchantReturnPolicy } from '../seller';
|
|
5
5
|
import * as TransactionFactory from '../transaction';
|
|
6
6
|
import { TransactionType } from '../transactionType';
|
|
7
7
|
export declare type IAgent = TransactionFactory.IAgent;
|
|
@@ -118,13 +118,33 @@ export interface IConfirmParams {
|
|
|
118
118
|
*/
|
|
119
119
|
potentialActions?: IPotentialActionsParams;
|
|
120
120
|
}
|
|
121
|
+
export interface IReturnFeesMovieTicket {
|
|
122
|
+
/**
|
|
123
|
+
* 決済カードコード
|
|
124
|
+
*/
|
|
125
|
+
identifier: string;
|
|
126
|
+
/**
|
|
127
|
+
* 着券取消実行有無
|
|
128
|
+
*/
|
|
129
|
+
returnFees: ReturnFeesEnumeration.FreeReturn | ReturnFeesEnumeration.ReturnFeesCustomerResponsibility;
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* 取引に適用される返品ポリシー
|
|
133
|
+
*/
|
|
134
|
+
export declare type IReturnPolicy = Pick<IMerchantReturnPolicy, 'typeOf' | 'merchantReturnDays' | 'restockingFee' | 'returnFees'> & {
|
|
135
|
+
returnFees: ReturnFeesEnumeration;
|
|
136
|
+
/**
|
|
137
|
+
* 決済カードコードごとの着券取消実行有無
|
|
138
|
+
*/
|
|
139
|
+
returnFeesMovieTicket?: IReturnFeesMovieTicket[];
|
|
140
|
+
};
|
|
121
141
|
/**
|
|
122
142
|
* 取引対象物
|
|
123
143
|
*/
|
|
124
144
|
export interface IObject {
|
|
125
145
|
order: IReturnableOrder[];
|
|
126
146
|
reason: Reason;
|
|
127
|
-
returnPolicy:
|
|
147
|
+
returnPolicy: IReturnPolicy;
|
|
128
148
|
}
|
|
129
149
|
export interface IPotentialActions {
|
|
130
150
|
/**
|
package/package.json
CHANGED
package/lib/factory/service.d.ts
DELETED
package/lib/factory/service.js
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
-
}) : (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
o[k2] = m[k];
|
|
8
|
-
}));
|
|
9
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
-
};
|
|
12
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
-
/**
|
|
14
|
-
* サービスファクトリー
|
|
15
|
-
*/
|
|
16
|
-
__exportStar(require("./product"), exports);
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ICategoryCode, ISearchConditions as ICategoryCodeSearchConditions } from './categoryCode';
|
|
2
|
-
/**
|
|
3
|
-
* サービスタイプインターフェース
|
|
4
|
-
*/
|
|
5
|
-
export declare type IServiceType = ICategoryCode;
|
|
6
|
-
/**
|
|
7
|
-
* 検索条件インターフェース
|
|
8
|
-
*/
|
|
9
|
-
export declare type ISearchConditions = ICategoryCodeSearchConditions;
|