@chevre/factory 10.3.0-alpha.11 → 10.3.0-alpha.12
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.
|
@@ -10,6 +10,7 @@ export interface IInstrument {
|
|
|
10
10
|
}
|
|
11
11
|
export interface IAttributes extends Pick<IBaseAttributes<IObject, IResult>, 'agent' | 'error' | 'object' | 'project' | 'recipient' | 'result' | 'typeOf'> {
|
|
12
12
|
instrument?: IInstrument;
|
|
13
|
+
purpose?: never;
|
|
13
14
|
}
|
|
14
15
|
/**
|
|
15
16
|
* チケットオブジェクト承認アクション
|
package/lib/chevre/actionType.js
CHANGED
|
@@ -24,7 +24,6 @@ var ActionType;
|
|
|
24
24
|
ActionType["DeleteAction"] = "DeleteAction";
|
|
25
25
|
ActionType["ReplaceAction"] = "ReplaceAction";
|
|
26
26
|
ActionType["UpdateAction"] = "UpdateAction";
|
|
27
|
-
// 以下actions.??で管理
|
|
28
27
|
ActionType["InformAction"] = "InformAction";
|
|
29
28
|
ActionType["UseAction"] = "UseAction";
|
|
30
29
|
})(ActionType || (exports.ActionType = ActionType = {}));
|
package/lib/chevre/index.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ export * as cognito from './cognito';
|
|
|
3
3
|
import * as ActionFactory from './action';
|
|
4
4
|
import * as AcceptCOAOfferActionFactory from './action/accept/coaOffer';
|
|
5
5
|
import * as AcceptPayActionFactory from './action/accept/pay';
|
|
6
|
-
import * as AuthorizeActionFactory from './action/authorize';
|
|
7
6
|
import * as AuthorizeInvoiceActionFactory from './action/authorize/invoice';
|
|
8
7
|
import * as AuthorizeEventServiceOfferActionFactory from './action/authorize/offer/eventService';
|
|
9
8
|
import * as AuthorizeAnyPaymentActionFactory from './action/authorize/paymentMethod/any';
|
|
@@ -205,9 +204,6 @@ export declare namespace action {
|
|
|
205
204
|
export import IParticipantAsSeller = ActionFactory.IParticipantAsSeller;
|
|
206
205
|
export import IParticipantAsProject = ActionFactory.IParticipantAsProject;
|
|
207
206
|
export import IParticipantAsCustomer = ActionFactory.IParticipantAsCustomer;
|
|
208
|
-
export import IParticipant = ActionFactory.IParticipant;
|
|
209
|
-
export import IPurpose = ActionFactory.IPurpose;
|
|
210
|
-
export import IRecipient = ActionFactory.IRecipient;
|
|
211
207
|
export import ISortOrder = ActionFactory.ISortOrder;
|
|
212
208
|
export import ISearchConditions = ActionFactory.ISearchConditions;
|
|
213
209
|
export import ISameAs = ActionFactory.ISameAs;
|
|
@@ -216,8 +212,6 @@ export declare namespace action {
|
|
|
216
212
|
export import pay = AcceptPayActionFactory;
|
|
217
213
|
}
|
|
218
214
|
namespace authorize {
|
|
219
|
-
export import IAction = AuthorizeActionFactory.IAction;
|
|
220
|
-
export import IAttributes = AuthorizeActionFactory.IAttributes;
|
|
221
215
|
namespace paymentMethod {
|
|
222
216
|
export import any = AuthorizeAnyPaymentActionFactory;
|
|
223
217
|
}
|
package/lib/chevre/index.js
CHANGED
|
@@ -69,7 +69,6 @@ const MovieTicketTypeFactory = require("./movieTicketType");
|
|
|
69
69
|
exports.offer = require("./offer");
|
|
70
70
|
exports.aggregateOffer = require("./offer/aggregateOffer");
|
|
71
71
|
exports.eventOffer = require("./offer/eventOffer");
|
|
72
|
-
// export * as productOffer from './offer/productOffer'; // discontinue(2026-04-20~)
|
|
73
72
|
const OfferCatalogFactory = require("./offerCatalog");
|
|
74
73
|
const OfferItemConditionFactory = require("./offerItemCondition");
|
|
75
74
|
const offerType_1 = require("./offerType");
|