@chevre/factory 8.0.0-alpha.4 → 8.0.0-alpha.6

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 (44) 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/creativeWorkType.d.ts +0 -1
  6. package/lib/chevre/creativeWorkType.js +0 -1
  7. package/lib/chevre/index.d.ts +0 -11
  8. package/lib/chevre/index.js +2 -13
  9. package/lib/chevre/ownershipInfo.d.ts +2 -3
  10. package/lib/chevre/permit.d.ts +2 -21
  11. package/lib/chevre/product.d.ts +5 -69
  12. package/lib/chevre/product.js +0 -12
  13. package/lib/chevre/reservation.d.ts +1 -9
  14. package/lib/chevre/reservedCodeValues.js +4 -8
  15. package/lib/chevre/service/paymentService.d.ts +3 -3
  16. package/lib/chevre/taskName.d.ts +0 -1
  17. package/lib/chevre/taskName.js +1 -1
  18. package/lib/chevre/transaction/placeOrder.d.ts +0 -8
  19. package/lib/chevre/unitPriceOffer.d.ts +1 -15
  20. package/package.json +1 -1
  21. package/lib/chevre/account/action/moneyTransfer.d.ts +0 -86
  22. package/lib/chevre/account/action/moneyTransfer.js +0 -2
  23. package/lib/chevre/account/transaction/deposit.d.ts +0 -27
  24. package/lib/chevre/account/transaction/deposit.js +0 -2
  25. package/lib/chevre/account/transaction/transfer.d.ts +0 -32
  26. package/lib/chevre/account/transaction/transfer.js +0 -2
  27. package/lib/chevre/account/transaction/withdraw.d.ts +0 -31
  28. package/lib/chevre/account/transaction/withdraw.js +0 -2
  29. package/lib/chevre/account/transaction.d.ts +0 -143
  30. package/lib/chevre/account/transaction.js +0 -2
  31. package/lib/chevre/account/transactionType.d.ts +0 -17
  32. package/lib/chevre/account/transactionType.js +0 -21
  33. package/lib/chevre/account.d.ts +0 -124
  34. package/lib/chevre/account.js +0 -19
  35. package/lib/chevre/accountType.d.ts +0 -15
  36. package/lib/chevre/accountType.js +0 -19
  37. package/lib/chevre/creativeWork/comment.d.ts +0 -51
  38. package/lib/chevre/creativeWork/comment.js +0 -2
  39. package/lib/chevre/task/accountMoneyTransfer.d.ts +0 -15
  40. package/lib/chevre/task/accountMoneyTransfer.js +0 -2
  41. package/lib/chevre/task/cancelAccountMoneyTransfer.d.ts +0 -19
  42. package/lib/chevre/task/cancelAccountMoneyTransfer.js +0 -2
  43. package/lib/chevre/task/registerService.d.ts +0 -13
  44. package/lib/chevre/task/registerService.js +0 -2
@@ -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 });