@chevre/domain 24.0.0-alpha.10 → 24.0.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.
Files changed (29) hide show
  1. package/lib/chevre/service/order/onAssetTransactionStatusChanged/paymentDue2Processing.d.ts +21 -0
  2. package/lib/chevre/service/order/onAssetTransactionStatusChanged/paymentDue2Processing.js +108 -0
  3. package/lib/chevre/service/order/onAssetTransactionStatusChanged.d.ts +5 -17
  4. package/lib/chevre/service/order/onAssetTransactionStatusChanged.js +4 -76
  5. package/lib/chevre/service/order/placeOrder.d.ts +12 -11
  6. package/lib/chevre/service/order.d.ts +3 -6
  7. package/lib/chevre/service/order.js +3 -9
  8. package/lib/chevre/service/payment/any/{fixOrderAsNeeded.d.ts → authorize/fixOrderAsNeeded.d.ts} +5 -5
  9. package/lib/chevre/service/payment/any/{fixOrderAsNeeded.js → authorize/fixOrderAsNeeded.js} +3 -3
  10. package/lib/chevre/service/payment/any/authorize.d.ts +90 -0
  11. package/lib/chevre/service/payment/any/authorize.js +225 -0
  12. package/lib/chevre/service/payment/any/findAcceptAction.d.ts +43 -0
  13. package/lib/chevre/service/payment/any/findAcceptAction.js +94 -0
  14. package/lib/chevre/service/payment/any/findAuthorizeAction.d.ts +41 -0
  15. package/lib/chevre/service/payment/any/findAuthorizeAction.js +83 -0
  16. package/lib/chevre/service/payment/any/findCheckAction.d.ts +44 -0
  17. package/lib/chevre/service/payment/any/findCheckAction.js +89 -0
  18. package/lib/chevre/service/payment/any/invalidatePaymentUrl.d.ts +28 -0
  19. package/lib/chevre/service/payment/any/invalidatePaymentUrl.js +185 -0
  20. package/lib/chevre/service/payment/any/processVoidPayTransaction.d.ts +29 -0
  21. package/lib/chevre/service/payment/any/processVoidPayTransaction.js +125 -0
  22. package/lib/chevre/service/payment/any/publishPaymentUrl.d.ts +64 -0
  23. package/lib/chevre/service/payment/any/publishPaymentUrl.js +133 -0
  24. package/lib/chevre/service/payment/any/voidPayTransaction.d.ts +31 -0
  25. package/lib/chevre/service/payment/any/voidPayTransaction.js +38 -0
  26. package/lib/chevre/service/payment/any.d.ts +8 -305
  27. package/lib/chevre/service/payment/any.js +17 -857
  28. package/lib/chevre/service/transaction/placeOrder/exportTasksById.d.ts +5 -4
  29. package/package.json +1 -1
@@ -1,15 +1,16 @@
1
1
  import type { SettingRepo } from '../../../repo/setting';
2
2
  import type { TaskRepo } from '../../../repo/task';
3
3
  import type { PlaceOrderRepo } from '../../../repo/transaction/placeOrder';
4
- type ITaskAndTransactionOperation<T> = (repos: {
4
+ interface IExportTasksByIdRepos {
5
5
  setting: SettingRepo;
6
6
  task: TaskRepo;
7
7
  placeOrder: PlaceOrderRepo;
8
- }) => Promise<T>;
8
+ }
9
+ type ITaskAndTransactionOperation<T> = (repos: IExportTasksByIdRepos) => Promise<T>;
9
10
  /**
10
11
  * 取引のタスクを出力します
11
12
  */
12
- export declare function exportTasksById(params: {
13
+ declare function exportTasksById(params: {
13
14
  id: string;
14
15
  /**
15
16
  * タスク実行日時バッファ
@@ -20,4 +21,4 @@ export declare function exportTasksById(params: {
20
21
  */
21
22
  optimizeRedundantTasks: boolean;
22
23
  }): ITaskAndTransactionOperation<void>;
23
- export {};
24
+ export { IExportTasksByIdRepos, exportTasksById };
package/package.json CHANGED
@@ -99,5 +99,5 @@
99
99
  "postversion": "git push origin --tags",
100
100
  "prepublishOnly": "npm run clean && npm run build"
101
101
  },
102
- "version": "24.0.0-alpha.10"
102
+ "version": "24.0.0-alpha.12"
103
103
  }