@chevre/factory 8.0.0-alpha.5 → 8.0.0-alpha.7

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.
Files changed (42) hide show
  1. package/lib/chevre/action/trade/pay.d.ts +1 -15
  2. package/lib/chevre/assetTransaction/pay.d.ts +2 -2
  3. package/lib/chevre/assetTransaction/reserve.d.ts +1 -2
  4. package/lib/chevre/authorization.d.ts +2 -22
  5. package/lib/chevre/index.d.ts +0 -11
  6. package/lib/chevre/index.js +2 -13
  7. package/lib/chevre/ownershipInfo.d.ts +2 -3
  8. package/lib/chevre/permit.d.ts +2 -21
  9. package/lib/chevre/product.d.ts +5 -69
  10. package/lib/chevre/product.js +0 -12
  11. package/lib/chevre/reservation.d.ts +1 -9
  12. package/lib/chevre/reservedCodeValues.js +3 -7
  13. package/lib/chevre/service/paymentService.d.ts +3 -3
  14. package/lib/chevre/taskName.d.ts +0 -1
  15. package/lib/chevre/taskName.js +1 -1
  16. package/lib/chevre/transaction/placeOrder.d.ts +0 -8
  17. package/lib/chevre/unitPriceOffer.d.ts +1 -31
  18. package/package.json +1 -1
  19. package/lib/chevre/account/action/moneyTransfer.d.ts +0 -86
  20. package/lib/chevre/account/action/moneyTransfer.js +0 -2
  21. package/lib/chevre/account/transaction/deposit.d.ts +0 -27
  22. package/lib/chevre/account/transaction/deposit.js +0 -2
  23. package/lib/chevre/account/transaction/transfer.d.ts +0 -32
  24. package/lib/chevre/account/transaction/transfer.js +0 -2
  25. package/lib/chevre/account/transaction/withdraw.d.ts +0 -31
  26. package/lib/chevre/account/transaction/withdraw.js +0 -2
  27. package/lib/chevre/account/transaction.d.ts +0 -143
  28. package/lib/chevre/account/transaction.js +0 -2
  29. package/lib/chevre/account/transactionType.d.ts +0 -17
  30. package/lib/chevre/account/transactionType.js +0 -21
  31. package/lib/chevre/account.d.ts +0 -124
  32. package/lib/chevre/account.js +0 -19
  33. package/lib/chevre/accountType.d.ts +0 -15
  34. package/lib/chevre/accountType.js +0 -19
  35. package/lib/chevre/advanceBookingRequirement.d.ts +0 -60
  36. package/lib/chevre/advanceBookingRequirement.js +0 -2
  37. package/lib/chevre/task/accountMoneyTransfer.d.ts +0 -15
  38. package/lib/chevre/task/accountMoneyTransfer.js +0 -2
  39. package/lib/chevre/task/cancelAccountMoneyTransfer.d.ts +0 -19
  40. package/lib/chevre/task/cancelAccountMoneyTransfer.js +0 -2
  41. package/lib/chevre/task/registerService.d.ts +0 -13
  42. package/lib/chevre/task/registerService.js +0 -2
@@ -1,60 +0,0 @@
1
- import { IMultilingualString } from './multilingualString';
2
- import { IProject } from './project';
3
- import { IQuantitativeValue } from './quantitativeValue';
4
- import { SortType } from './sortType';
5
- import { UnitCode } from './unitCode';
6
- interface IAdvanceBookingActualUsageHours {
7
- typeOf: 'OpeningHoursSpecification';
8
- /**
9
- * 開始時刻
10
- * hh:mm:ss[Z|(+|-)hh:mm]
11
- */
12
- opens: string;
13
- }
14
- interface IAdvanceBookingRequirement extends Pick<IQuantitativeValue<UnitCode.Day>, 'typeOf' | 'maxValue' | 'minValue' | 'unitCode' | 'description'> {
15
- project: Pick<IProject, 'id' | 'typeOf'>;
16
- id: string;
17
- /**
18
- * 事前予約要件コード
19
- */
20
- identifier: string;
21
- /**
22
- * n日前から
23
- */
24
- maxValue?: number;
25
- /**
26
- * n日前まで
27
- */
28
- minValue?: number;
29
- /**
30
- * 要件説明
31
- */
32
- description?: IMultilingualString;
33
- unitCode: UnitCode.Day;
34
- /**
35
- * 基準となるイベント開始日の時刻
36
- * 未定義の場合、イベントのstartDate
37
- */
38
- valueReference?: IAdvanceBookingActualUsageHours;
39
- }
40
- interface ISearchConditions {
41
- limit?: number;
42
- page?: number;
43
- sort?: {
44
- identifier?: SortType;
45
- };
46
- project?: {
47
- id?: {
48
- $eq?: string;
49
- };
50
- };
51
- id?: {
52
- $eq?: string;
53
- $in?: string[];
54
- };
55
- identifier?: {
56
- $eq?: string;
57
- $regex?: string;
58
- };
59
- }
60
- export { IAdvanceBookingActualUsageHours, IAdvanceBookingRequirement, ISearchConditions };
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,15 +0,0 @@
1
- /**
2
- * 通貨転送タスクファクトリー
3
- */
4
- import { IAttributes as IMoneyTransferActionAttributes } from '../account/action/moneyTransfer';
5
- import { IExtendId } from '../autoGenerated';
6
- import { ITaskAttributes } from '../task';
7
- import { TaskName } from '../taskName';
8
- export interface IData {
9
- actionAttributes: IMoneyTransferActionAttributes;
10
- }
11
- export interface IAttributes extends ITaskAttributes {
12
- name: TaskName.AccountMoneyTransfer;
13
- data: IData;
14
- }
15
- export type ITask = IExtendId<IAttributes>;
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,19 +0,0 @@
1
- /**
2
- * 現金転送中止タスクファクトリー
3
- */
4
- import { AccountTransactionType } from '../account/transactionType';
5
- import { IExtendId } from '../autoGenerated';
6
- import { ITaskAttributes } from '../task';
7
- import { TaskName } from '../taskName';
8
- export interface IData {
9
- transaction: {
10
- typeOf: AccountTransactionType;
11
- id: string;
12
- transactionNumber?: string;
13
- };
14
- }
15
- export interface IAttributes extends ITaskAttributes {
16
- name: TaskName.CancelAccountMoneyTransfer;
17
- data: IData;
18
- }
19
- export type ITask = IExtendId<IAttributes>;
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,13 +0,0 @@
1
- /**
2
- * サービス登録タスクファクトリー
3
- */
4
- import { IAttributes as IRegisterServiceActionAttributes } from '../action/interact/register/service';
5
- import { IExtendId } from '../autoGenerated';
6
- import { ITaskAttributes } from '../task';
7
- import { TaskName } from '../taskName';
8
- export type IData = IRegisterServiceActionAttributes[];
9
- export interface IAttributes extends ITaskAttributes {
10
- name: TaskName.RegisterService;
11
- data: IData;
12
- }
13
- export type ITask = IExtendId<IAttributes>;
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });