@chevre/factory 4.313.0-alpha.9 → 4.313.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/example/informPayAction.json +8 -1
- package/lib/action/cancel/reservation.d.ts +4 -4
- package/lib/action/reserve.d.ts +4 -5
- package/lib/action/transfer/send/message/email.d.ts +4 -3
- package/lib/action/transfer/send/order.d.ts +3 -3
- package/lib/action/update/delete/member.d.ts +15 -5
- package/lib/action.d.ts +16 -0
- package/lib/additionalProperty.d.ts +7 -1
- package/lib/assetTransaction/reserve.d.ts +30 -3
- package/lib/categoryCode.d.ts +1 -0
- package/lib/creativeWork/movie.d.ts +4 -0
- package/lib/event/anyEvent.d.ts +1 -0
- package/lib/event/screeningEvent.d.ts +7 -2
- package/lib/event/screeningEventSeries.d.ts +4 -2
- package/lib/index.d.ts +13 -7
- package/lib/index.js +10 -2
- package/lib/offerItemCondition.d.ts +4 -0
- package/lib/order.d.ts +7 -15
- package/lib/place/movieTheater.d.ts +1 -1
- package/lib/place/screeningRoom.d.ts +9 -1
- package/lib/product.d.ts +8 -0
- package/lib/report/accountingReport.d.ts +8 -4
- package/lib/reservation/busReservation.d.ts +1 -2
- package/lib/reservation/event.d.ts +1 -2
- package/lib/reservation/pendingReservationPackage.d.ts +24 -0
- package/lib/reservation/pendingReservationPackage.js +14 -0
- package/lib/reservation.d.ts +7 -6
- package/lib/seller.d.ts +7 -0
- package/lib/service/paymentService.d.ts +6 -2
- package/lib/task/deleteTransaction.d.ts +22 -1
- package/lib/task/deleteTransaction.js +9 -0
- package/lib/task/onAuthorizationCreated.d.ts +24 -0
- package/lib/task/{deleteMember.d.ts → onEventChanged.d.ts} +12 -4
- package/lib/task/onResourceUpdated.d.ts +28 -0
- package/lib/task/{deleteOrder.d.ts → syncScreeningRooms.d.ts} +11 -4
- package/lib/task/syncScreeningRooms.js +2 -0
- package/lib/task/useReservation.d.ts +20 -0
- package/lib/task/useReservation.js +2 -0
- package/lib/taskName.d.ts +36 -34
- package/lib/taskName.js +36 -33
- package/lib/transaction/returnOrder.d.ts +3 -0
- package/package.json +1 -1
- package/lib/task/deleteAssetTransaction.d.ts +0 -25
- /package/lib/task/{deleteAssetTransaction.js → onAuthorizationCreated.js} +0 -0
- /package/lib/task/{deleteMember.js → onEventChanged.js} +0 -0
- /package/lib/task/{deleteOrder.js → onResourceUpdated.js} +0 -0
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { AssetTransactionType } from '../assetTransactionType';
|
|
2
|
-
import { IExtendId } from '../autoGenerated';
|
|
3
|
-
import { OrganizationType } from '../organizationType';
|
|
4
|
-
import * as TaskFactory from '../task';
|
|
5
|
-
import { TaskName } from '../taskName';
|
|
6
|
-
export interface IObject {
|
|
7
|
-
project: {
|
|
8
|
-
id: string;
|
|
9
|
-
typeOf: OrganizationType.Project;
|
|
10
|
-
};
|
|
11
|
-
typeOf: AssetTransactionType;
|
|
12
|
-
id: string;
|
|
13
|
-
transactionNumber: string;
|
|
14
|
-
}
|
|
15
|
-
export interface IData {
|
|
16
|
-
object: IObject;
|
|
17
|
-
}
|
|
18
|
-
export interface IAttributes extends TaskFactory.IAttributes {
|
|
19
|
-
name: TaskName.DeleteAssetTransaction;
|
|
20
|
-
data: IData;
|
|
21
|
-
}
|
|
22
|
-
/**
|
|
23
|
-
* 資産取引削除タスク
|
|
24
|
-
*/
|
|
25
|
-
export declare type ITask = IExtendId<IAttributes>;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|