@chevre/domain 24.1.0-alpha.4 → 24.1.0-alpha.40

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 (186) hide show
  1. package/README.md +0 -2
  2. package/lib/chevre/credentials.d.ts +4 -16
  3. package/lib/chevre/credentials.js +11 -39
  4. package/lib/chevre/emailMessageBuilder.js +4 -12
  5. package/lib/chevre/index.d.ts +1 -1
  6. package/lib/chevre/index.js +2 -2
  7. package/lib/chevre/repo/acceptedOffer.d.ts +14 -13
  8. package/lib/chevre/repo/acceptedOffer.js +128 -51
  9. package/lib/chevre/repo/acceptedOfferInReserve.d.ts +32 -0
  10. package/lib/chevre/repo/acceptedOfferInReserve.js +84 -0
  11. package/lib/chevre/repo/accountingReport.d.ts +9 -2
  12. package/lib/chevre/repo/accountingReport.js +6 -34
  13. package/lib/chevre/repo/action/actionProcess.d.ts +1 -1
  14. package/lib/chevre/repo/assetTransaction/reserve.d.ts +0 -1
  15. package/lib/chevre/repo/assetTransaction/reserve.js +4 -50
  16. package/lib/chevre/repo/event.js +12 -8
  17. package/lib/chevre/repo/factory/acceptedOffer/reserveTransaction2itemOffered.d.ts +7 -0
  18. package/lib/chevre/repo/factory/acceptedOffer/reserveTransaction2itemOffered.js +74 -0
  19. package/lib/chevre/repo/factory/reservation/createMongoConditions.d.ts +1 -1
  20. package/lib/chevre/repo/factory/reservation/createMongoConditions.js +171 -362
  21. package/lib/chevre/repo/mongoose/schemas/accountingReport.js +42 -42
  22. package/lib/chevre/repo/mongoose/schemas/order.js +108 -108
  23. package/lib/chevre/repo/mongoose/schemas/reservation.d.ts +3 -1
  24. package/lib/chevre/repo/mongoose/schemas/reservation.js +128 -146
  25. package/lib/chevre/repo/mongoose/schemas/setting.d.ts +45 -0
  26. package/lib/chevre/repo/mongoose/schemas/setting.js +2 -1
  27. package/lib/chevre/repo/order.d.ts +2 -83
  28. package/lib/chevre/repo/order.js +171 -364
  29. package/lib/chevre/repo/orderInTransaction.d.ts +48 -6
  30. package/lib/chevre/repo/orderInTransaction.js +58 -4
  31. package/lib/chevre/repo/place/hasPOS.js +2 -1
  32. package/lib/chevre/repo/reservation.d.ts +20 -7
  33. package/lib/chevre/repo/reservation.js +16 -12
  34. package/lib/chevre/repo/role.d.ts +1 -15
  35. package/lib/chevre/repo/role.js +7 -14
  36. package/lib/chevre/repo/setting/integration.d.ts +25 -0
  37. package/lib/chevre/repo/setting/integration.js +86 -0
  38. package/lib/chevre/repo/transaction.d.ts +6 -6
  39. package/lib/chevre/repository.d.ts +5 -0
  40. package/lib/chevre/repository.js +11 -0
  41. package/lib/chevre/service/aggregation/event/aggregateOffers.js +6 -1
  42. package/lib/chevre/service/aggregation/event/aggregateScreeningEvent.js +0 -1
  43. package/lib/chevre/service/assetTransaction/cancelReservation/factory.js +14 -11
  44. package/lib/chevre/service/assetTransaction/cancelReservation/start.d.ts +1 -1
  45. package/lib/chevre/service/assetTransaction/cancelReservation/start.js +1 -1
  46. package/lib/chevre/service/assetTransaction/pay/check.d.ts +1 -1
  47. package/lib/chevre/service/assetTransaction/pay/publishPaymentUrl.d.ts +1 -1
  48. package/lib/chevre/service/assetTransaction/pay/searchGMOTrade.d.ts +1 -1
  49. package/lib/chevre/service/assetTransaction/pay/start/processAuthorize.d.ts +1 -1
  50. package/lib/chevre/service/assetTransaction/pay/start/processAuthorizeCreditCard.d.ts +1 -1
  51. package/lib/chevre/service/assetTransaction/pay/start/processAuthorizeMovieTicket.d.ts +1 -1
  52. package/lib/chevre/service/assetTransaction/pay/start.d.ts +1 -1
  53. package/lib/chevre/service/assetTransaction/reserve/cancel.d.ts +1 -1
  54. package/lib/chevre/service/assetTransaction/reserve/confirm.d.ts +1 -1
  55. package/lib/chevre/service/assetTransaction/reserve/start/factory/createReservation.js +0 -12
  56. package/lib/chevre/service/assetTransaction/reserve/start/factory/price.d.ts +1 -1
  57. package/lib/chevre/service/assetTransaction/reserve/start.d.ts +1 -1
  58. package/lib/chevre/service/delivery/factory.d.ts +6 -1
  59. package/lib/chevre/service/delivery/factory.js +1 -1
  60. package/lib/chevre/service/delivery/reservation/factory.d.ts +1 -3
  61. package/lib/chevre/service/delivery/reservation/factory.js +0 -17
  62. package/lib/chevre/service/notification/notifyAbortedTasksByEmail.d.ts +2 -2
  63. package/lib/chevre/service/notification/notifyAbortedTasksByEmail.js +1 -1
  64. package/lib/chevre/service/notification/notifyByEmail.js +0 -6
  65. package/lib/chevre/service/offer/any.d.ts +7 -2
  66. package/lib/chevre/service/offer/event/authorize/factory.d.ts +6 -3
  67. package/lib/chevre/service/offer/event/authorize/factory.js +13 -15
  68. package/lib/chevre/service/offer/event/authorize/processStartReserve4chevre.d.ts +1 -1
  69. package/lib/chevre/service/offer/event/authorize.d.ts +6 -1
  70. package/lib/chevre/service/offer/event/authorize.js +51 -4
  71. package/lib/chevre/service/offer/event/voidTransaction/processVoidTransaction4chevre.d.ts +1 -1
  72. package/lib/chevre/service/offer/event/voidTransaction.d.ts +1 -1
  73. package/lib/chevre/service/offer/event/voidTransactionByActionId.d.ts +1 -1
  74. package/lib/chevre/service/offer/eventServiceByCOA/authorize/factory.d.ts +1 -3
  75. package/lib/chevre/service/order/createAccountingReportIfNotExist.d.ts +1 -3
  76. package/lib/chevre/service/order/createAccountingReportIfNotExist.js +67 -72
  77. package/lib/chevre/service/order/deleteOrder.js +23 -44
  78. package/lib/chevre/service/order/onAssetTransactionStatusChanged/onPayTransactionConfirmed.d.ts +1 -1
  79. package/lib/chevre/service/order/onAssetTransactionStatusChanged/onReserveTransactionConfirmed.d.ts +1 -1
  80. package/lib/chevre/service/order/onAssetTransactionStatusChanged/paymentDue2Processing.d.ts +1 -1
  81. package/lib/chevre/service/order/onAssetTransactionStatusChanged/paymentDue2Processing.js +9 -11
  82. package/lib/chevre/service/order/onAssetTransactionStatusChanged/processing2inTransit.d.ts +1 -1
  83. package/lib/chevre/service/order/onAssetTransactionStatusChanged.d.ts +1 -1
  84. package/lib/chevre/service/order/onOrderStatusChanged/onOrderDelivered.js +0 -1
  85. package/lib/chevre/service/order/onOrderStatusChanged/onOrderDeliveredPartially/factory.d.ts +6 -1
  86. package/lib/chevre/service/order/onOrderStatusChanged/onOrderDeliveredPartially.js +0 -1
  87. package/lib/chevre/service/order/onOrderStatusChanged/onOrderInTransit.d.ts +1 -1
  88. package/lib/chevre/service/order/onOrderStatusChanged/onOrderInTransit.js +1 -1
  89. package/lib/chevre/service/order/onOrderStatusChanged/onOrderProcessing.d.ts +1 -1
  90. package/lib/chevre/service/order/onOrderStatusChanged/onOrderProcessing.js +2 -1
  91. package/lib/chevre/service/order/onOrderStatusChanged/onOrderReturned.js +0 -1
  92. package/lib/chevre/service/order/onOrderUpdated.js +0 -1
  93. package/lib/chevre/service/order/payOrder.d.ts +1 -1
  94. package/lib/chevre/service/order/placeOrder/createPlacingOrderFromExistingTransaction.js +4 -1
  95. package/lib/chevre/service/order/placeOrder/factory/orderedItem.d.ts +1 -1
  96. package/lib/chevre/service/order/placeOrder/factory/orderedItem.js +0 -5
  97. package/lib/chevre/service/order/placeOrder/factory.d.ts +1 -1
  98. package/lib/chevre/service/order/placeOrder.d.ts +1 -1
  99. package/lib/chevre/service/order/returnOrder.js +0 -1
  100. package/lib/chevre/service/order/sendOrder.js +4 -5
  101. package/lib/chevre/service/payment/any/authorize.d.ts +1 -1
  102. package/lib/chevre/service/payment/any/person2username.js +0 -1
  103. package/lib/chevre/service/payment/any/publishPaymentUrl.d.ts +1 -1
  104. package/lib/chevre/service/payment/creditCard/authorize.d.ts +1 -1
  105. package/lib/chevre/service/payment/creditCard/authorize.js +4 -3
  106. package/lib/chevre/service/payment/creditCard/payCreditCard.d.ts +1 -1
  107. package/lib/chevre/service/payment/creditCard/payCreditCard.js +1 -1
  108. package/lib/chevre/service/payment/creditCard/refundCreditCard.d.ts +1 -1
  109. package/lib/chevre/service/payment/creditCard/refundCreditCard.js +1 -1
  110. package/lib/chevre/service/payment/creditCard/searchGMOTrade.d.ts +1 -1
  111. package/lib/chevre/service/payment/creditCard/searchGMOTrade.js +1 -1
  112. package/lib/chevre/service/payment/creditCard/voidTransaction.d.ts +1 -1
  113. package/lib/chevre/service/payment/creditCard/voidTransaction.js +1 -1
  114. package/lib/chevre/service/payment/factory/createPayObjectServiceOutput.d.ts +8 -1
  115. package/lib/chevre/service/payment/factory/createPayObjectServiceOutput.js +1 -1
  116. package/lib/chevre/service/payment/movieTicket/authorize.d.ts +1 -1
  117. package/lib/chevre/service/payment/movieTicket/checkMovieTicket.d.ts +1 -1
  118. package/lib/chevre/service/payment/movieTicket/payMovieTicket.d.ts +1 -1
  119. package/lib/chevre/service/payment/movieTicket/payMovieTicket.js +1 -1
  120. package/lib/chevre/service/payment/movieTicket/processPurchaseNumberAuth.d.ts +1 -1
  121. package/lib/chevre/service/payment/movieTicket/processPurchaseNumberAuth.js +1 -1
  122. package/lib/chevre/service/payment/movieTicket/refundMovieTicket.d.ts +1 -1
  123. package/lib/chevre/service/payment/movieTicket/refundMovieTicket.js +2 -2
  124. package/lib/chevre/service/payment/movieTicket/voidTransaction.d.ts +1 -1
  125. package/lib/chevre/service/reserve/confirmReservation.js +7 -7
  126. package/lib/chevre/service/reserve/factory.js +2 -1
  127. package/lib/chevre/service/reserve/findByCode.d.ts +1 -1
  128. package/lib/chevre/service/reserve/findByCode.js +4 -1
  129. package/lib/chevre/service/reserve/findReservations.d.ts +4 -4
  130. package/lib/chevre/service/reserve/findReservations.js +16 -26
  131. package/lib/chevre/service/reserve/potentialActions/onPendingReservationCanceled.js +0 -1
  132. package/lib/chevre/service/reserve/potentialActions/onReservationCanceled.js +0 -1
  133. package/lib/chevre/service/reserve/potentialActions/onReservationConfirmed.d.ts +4 -3
  134. package/lib/chevre/service/reserve/potentialActions/onReservationConfirmed.js +1 -10
  135. package/lib/chevre/service/reserve/potentialActions/onReservationUsed.js +0 -1
  136. package/lib/chevre/service/reserve/potentialActions/onReservationsCreated.js +0 -1
  137. package/lib/chevre/service/reserve/searchByOrder.js +10 -3
  138. package/lib/chevre/service/reserve/useReservation.d.ts +1 -1
  139. package/lib/chevre/service/task/acceptCOAOffer.js +3 -2
  140. package/lib/chevre/service/task/authorizePayment.js +1 -1
  141. package/lib/chevre/service/task/cancelPendingReservation.js +1 -1
  142. package/lib/chevre/service/task/checkMovieTicket.js +1 -1
  143. package/lib/chevre/service/task/confirmReserveTransaction.d.ts +1 -1
  144. package/lib/chevre/service/task/confirmReserveTransaction.js +5 -2
  145. package/lib/chevre/service/task/createAccountingReport.js +7 -9
  146. package/lib/chevre/service/task/importEventCapacitiesFromCOA.js +1 -1
  147. package/lib/chevre/service/task/importEventsFromCOA.js +1 -1
  148. package/lib/chevre/service/task/importOffersFromCOA.js +1 -1
  149. package/lib/chevre/service/task/onResourceUpdated/onHasPOSUpdated.js +0 -1
  150. package/lib/chevre/service/task/pay.js +1 -1
  151. package/lib/chevre/service/task/payment/invalidatePaymentUrlByTask.d.ts +1 -1
  152. package/lib/chevre/service/task/payment/payByTask.d.ts +1 -1
  153. package/lib/chevre/service/task/payment/payByTask.js +5 -2
  154. package/lib/chevre/service/task/payment/refundByTask.d.ts +1 -1
  155. package/lib/chevre/service/task/payment/voidPaymentByTask.d.ts +1 -1
  156. package/lib/chevre/service/task/refund.js +1 -1
  157. package/lib/chevre/service/task/returnReserveTransaction.js +1 -1
  158. package/lib/chevre/service/task/syncResourcesFromCOA.js +1 -1
  159. package/lib/chevre/service/task/useReservation.d.ts +2 -2
  160. package/lib/chevre/service/task/useReservation.js +5 -16
  161. package/lib/chevre/service/task/voidPayment.js +1 -1
  162. package/lib/chevre/service/task/voidReserveTransaction.js +1 -1
  163. package/lib/chevre/service/task.d.ts +0 -2
  164. package/lib/chevre/service/task.js +10 -2
  165. package/lib/chevre/service/taskHandler.js +1 -0
  166. package/lib/chevre/service/transaction/placeOrder/confirm/potentialActions/sendEmailMessage.js +0 -1
  167. package/lib/chevre/service/transaction/placeOrder/confirm/potentialActions.js +0 -1
  168. package/lib/chevre/service/transaction/placeOrder/confirm/validation/validateInvoiceReferencesOrder.d.ts +1 -1
  169. package/lib/chevre/service/transaction/placeOrder/confirm/validation/validateMovieTicket.d.ts +1 -1
  170. package/lib/chevre/service/transaction/placeOrder/confirm/validation.d.ts +2 -2
  171. package/lib/chevre/service/transaction/placeOrder/confirm.js +5 -3
  172. package/lib/chevre/service/transaction/placeOrder/exportTasksById.js +0 -1
  173. package/lib/chevre/service/transaction/placeOrder/updateAgent.js +0 -1
  174. package/lib/chevre/service/transaction/returnOrder/exportTasks/factory.js +0 -1
  175. package/lib/chevre/service/transaction/returnOrder/potentialActions/returnPaymentMethod.js +0 -1
  176. package/lib/chevre/service/transaction/returnOrder/potentialActions.js +0 -1
  177. package/lib/chevre/service/transaction/returnOrder/preStart.js +4 -4
  178. package/lib/chevre/service/validation/validateOrder.js +7 -79
  179. package/lib/chevre/settings.d.ts +0 -55
  180. package/lib/chevre/settings.js +1 -29
  181. package/lib/chevre/taskSettings.d.ts +5 -2
  182. package/package.json +2 -2
  183. package/lib/chevre/credentials/customSearch.d.ts +0 -13
  184. package/lib/chevre/credentials/customSearch.js +0 -16
  185. package/lib/chevre/credentials/lineNotify.d.ts +0 -17
  186. package/lib/chevre/credentials/lineNotify.js +0 -20
@@ -1,58 +1,3 @@
1
- interface ISurfrockSettings {
2
- /**
3
- * 着券時タイムアウト
4
- */
5
- timeout: number;
6
- /**
7
- * 認証時タイムアウト
8
- */
9
- timeoutCheck: number;
10
- /**
11
- * 決済と返金の最小間隔(ms)
12
- */
13
- minIntervalBetweenPayAndRefund: number;
14
- /**
15
- * surfrockクライアント認証情報保管期限
16
- * 0の場合、保管しない
17
- */
18
- credentialsExpireInSeconds?: number;
19
- }
20
- interface IOptions {
21
- abortedTasksWithoutReport: string[];
22
- numTryConfirmReserveTransaction: number;
23
- deliverOrderLimit: number;
24
- coa: {
25
- timeout: number;
26
- };
27
- gmo: {
28
- timeout: number;
29
- timeoutBackground: number;
30
- };
31
- movieticketReserve: ISurfrockSettings;
32
- useExperimentalFeature: boolean;
33
- }
34
- /**
35
- * domain settings
36
- */
37
- declare class Settings {
38
- readonly abortedTasksWithoutReport: string[];
39
- readonly numTryConfirmReserveTransaction: number;
40
- readonly deliverOrderLimit: number;
41
- readonly coa: {
42
- timeout: number;
43
- };
44
- readonly gmo: {
45
- timeout: number;
46
- timeoutBackground: number;
47
- };
48
- readonly movieticketReserve: ISurfrockSettings;
49
- readonly useExperimentalFeature: boolean;
50
- /**
51
- * 通知設定
52
- */
53
- constructor(options: IOptions);
54
- }
55
1
  export declare const MONGO_MAX_TIME_MS: number;
56
2
  export declare const MONGO_READ_PREFERENCE: string;
57
3
  export declare const MONGO_AUTO_INDEX: boolean;
58
- export { Settings };
@@ -1,34 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Settings = exports.MONGO_AUTO_INDEX = exports.MONGO_READ_PREFERENCE = exports.MONGO_MAX_TIME_MS = void 0;
4
- /**
5
- * domain settings
6
- */
7
- class Settings {
8
- abortedTasksWithoutReport;
9
- numTryConfirmReserveTransaction;
10
- deliverOrderLimit;
11
- coa;
12
- gmo;
13
- movieticketReserve;
14
- useExperimentalFeature;
15
- /**
16
- * 通知設定
17
- */
18
- // public readonly notification: IWebhookSettings; // migrate to SettingRepo(2024-12-11~)
19
- constructor(options) {
20
- const { abortedTasksWithoutReport, numTryConfirmReserveTransaction, deliverOrderLimit, coa, gmo, movieticketReserve, useExperimentalFeature } = options;
21
- this.abortedTasksWithoutReport = abortedTasksWithoutReport;
22
- this.numTryConfirmReserveTransaction = numTryConfirmReserveTransaction;
23
- this.deliverOrderLimit = deliverOrderLimit;
24
- this.coa = coa;
25
- this.gmo = gmo;
26
- this.movieticketReserve = movieticketReserve;
27
- this.useExperimentalFeature = useExperimentalFeature;
28
- // this.notification = notification;
29
- }
30
- }
31
- exports.Settings = Settings;
3
+ exports.MONGO_AUTO_INDEX = exports.MONGO_READ_PREFERENCE = exports.MONGO_MAX_TIME_MS = void 0;
32
4
  exports.MONGO_MAX_TIME_MS = (typeof process.env.MONGO_MAX_TIME_MS === 'string')
33
5
  ? Number(process.env.MONGO_MAX_TIME_MS)
34
6
  : 10000;
@@ -1,7 +1,7 @@
1
1
  import type { SendGridCredentials } from './credentials/sendGrid';
2
2
  import type { IExecuteSettings as IMinimumExecuteSettings } from './eventEmitter/task';
3
3
  import { factory } from './factory';
4
- import type { Settings } from './settings';
4
+ import type { IntegrationSettingRepo } from './repo/setting/integration';
5
5
  interface IOnOrderStatusChanged {
6
6
  informOrder2hub?: factory.project.IInformParams[];
7
7
  }
@@ -39,7 +39,10 @@ interface ICredentialSettings {
39
39
  }
40
40
  interface IExecuteSettings extends IMinimumExecuteSettings {
41
41
  credentials: ICredentialSettings;
42
- settings: Settings;
42
+ /**
43
+ * 外部連携設定リポジトリ
44
+ */
45
+ settings: IntegrationSettingRepo;
43
46
  aggregationSettings?: AggregationSettings;
44
47
  }
45
48
  interface IExecuteOptions {
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "dependencies": {
12
12
  "@aws-sdk/client-cognito-identity-provider": "3.600.0",
13
13
  "@aws-sdk/credential-providers": "3.600.0",
14
- "@chevre/factory": "8.1.0-alpha.1",
14
+ "@chevre/factory": "8.2.0-alpha.4",
15
15
  "@motionpicture/coa-service": "10.0.0",
16
16
  "@motionpicture/gmo-service": "6.1.0-alpha.0",
17
17
  "@sendgrid/client": "8.1.4",
@@ -91,5 +91,5 @@
91
91
  "postversion": "git push origin --tags",
92
92
  "prepublishOnly": "npm run clean && npm run build"
93
93
  },
94
- "version": "24.1.0-alpha.4"
94
+ "version": "24.1.0-alpha.40"
95
95
  }
@@ -1,13 +0,0 @@
1
- interface IOptions {
2
- engineId: string;
3
- apiKey: string;
4
- }
5
- /**
6
- * GoogleCustomSearch認証情報
7
- */
8
- declare class CustomSearchCredentials {
9
- readonly engineId: string;
10
- readonly apiKey: string;
11
- constructor(options: IOptions);
12
- }
13
- export { CustomSearchCredentials };
@@ -1,16 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CustomSearchCredentials = void 0;
4
- /**
5
- * GoogleCustomSearch認証情報
6
- */
7
- class CustomSearchCredentials {
8
- engineId;
9
- apiKey;
10
- constructor(options) {
11
- const { engineId, apiKey } = options;
12
- this.engineId = engineId;
13
- this.apiKey = apiKey;
14
- }
15
- }
16
- exports.CustomSearchCredentials = CustomSearchCredentials;
@@ -1,17 +0,0 @@
1
- interface IOptions {
2
- url: string;
3
- accessToken: string;
4
- accessTokenAlert: string;
5
- accessTokenInfo: string;
6
- }
7
- /**
8
- * 通知認証情報
9
- */
10
- declare class LINENotifyCredentials {
11
- readonly url: string;
12
- readonly accessToken: string;
13
- readonly accessTokenAlert: string;
14
- readonly accessTokenInfo: string;
15
- constructor(options: IOptions);
16
- }
17
- export { LINENotifyCredentials };
@@ -1,20 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.LINENotifyCredentials = void 0;
4
- /**
5
- * 通知認証情報
6
- */
7
- class LINENotifyCredentials {
8
- url;
9
- accessToken;
10
- accessTokenAlert;
11
- accessTokenInfo;
12
- constructor(options) {
13
- const { url, accessToken, accessTokenAlert, accessTokenInfo } = options;
14
- this.url = url;
15
- this.accessToken = accessToken;
16
- this.accessTokenAlert = accessTokenAlert;
17
- this.accessTokenInfo = accessTokenInfo;
18
- }
19
- }
20
- exports.LINENotifyCredentials = LINENotifyCredentials;