@chevre/factory 4.181.0-alpha.7 → 4.181.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.
@@ -8,10 +8,6 @@ var TransferTransactionFactory = require("./account/transaction/transfer");
8
8
  var WithdrawTransactionFactory = require("./account/transaction/withdraw");
9
9
  var action;
10
10
  (function (action) {
11
- // export import IAction = ActionFactory.IAction;
12
- // export import IAttributes = ActionFactory.IAttributes;
13
- // export import IParticipant = ActionFactory.IParticipant;
14
- // export import IPurpose = ActionFactory.IPurpose;
15
11
  action.moneyTransfer = MoneyTransferActionFactory;
16
12
  })(action = exports.action || (exports.action = {}));
17
13
  var transaction;
@@ -85,17 +85,6 @@ export interface IObject {
85
85
  */
86
86
  paymentMethodId?: string;
87
87
  typeOf: ResultType;
88
- /**
89
- * 転送元口座(Account決済)
90
- * 出金取引、転送取引の場合指定
91
- */
92
- /**
93
- * 転送先口座(Account決済)
94
- * 入金取引、転送取引の場合指定
95
- */
96
- /**
97
- * 取引説明(Account決済)
98
- */
99
88
  notes?: string;
100
89
  /**
101
90
  * 進行中取引(Account決済)
@@ -163,15 +152,6 @@ export interface IResult {
163
152
  */
164
153
  id: string;
165
154
  };
166
- /**
167
- * 転送元口座(Account決済)
168
- */
169
- /**
170
- * 転送先口座(Account決済)
171
- */
172
- /**
173
- * 進行中取引(Account決済)
174
- */
175
155
  /**
176
156
  * 転送元(PaymentCard決済)
177
157
  */
@@ -13,4 +13,3 @@ var PlaceType;
13
13
  PlaceType["ScreeningRoomSection"] = "ScreeningRoomSection";
14
14
  PlaceType["Seat"] = "Seat";
15
15
  })(PlaceType = exports.PlaceType || (exports.PlaceType = {}));
16
- // export default PlaceType;
@@ -12,19 +12,10 @@ export declare enum ProgramMembershipType {
12
12
  export interface IProgramMembership extends IThing {
13
13
  project?: IProject;
14
14
  typeOf: string;
15
- /**
16
- * The organization (airline, travelers' club, etc.) the membership is made with.
17
- */
18
- /**
19
- * target program
20
- */
21
15
  /**
22
16
  * The service through with the permit was granted.
23
17
  */
24
18
  issuedThrough?: IProduct;
25
- /**
26
- * A member of an Organization or a ProgramMembership.
27
- */
28
19
  /**
29
20
  * A unique identifier for the membership.
30
21
  */
@@ -18,9 +18,6 @@ export interface IInformParams {
18
18
  export interface IOnPaymentStatusChanged {
19
19
  informPayment?: IInformParams[];
20
20
  }
21
- /**
22
- * 予約ステータス変更時イベントインターフェース
23
- */
24
21
  /**
25
22
  * 予約使用時イベントインターフェース
26
23
  */
@@ -1,12 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PaymentServiceType = void 0;
4
- // export interface IServiceOutput {
5
- // /**
6
- // * 決済方法タイプ
7
- // */
8
- // typeOf: string;
9
- // }
10
4
  var PaymentServiceType;
11
5
  (function (PaymentServiceType) {
12
6
  PaymentServiceType["CreditCard"] = "CreditCard";
@@ -121,9 +121,6 @@ export interface IConfirmReservationParams {
121
121
  */
122
122
  object?: IConfirmReservationObject<WebAPIFactory.Identifier>;
123
123
  }
124
- /**
125
- * メンバーシップ登録パラメータ
126
- */
127
124
  declare type ISendEmailMessageParams = TransactionFactory.ISendEmailMessageParams;
128
125
  /**
129
126
  * インセンティブ付与パラメータ
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.181.0-alpha.7",
3
+ "version": "4.181.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",