@chevre/domain 22.9.0-alpha.85 → 22.9.0-alpha.86

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.
@@ -16,7 +16,7 @@ async function main() {
16
16
  limit,
17
17
  page,
18
18
  project: { id: { $eq: project.id } },
19
- availableChannel: { serviceUrl: { $eq: 'xxx' } }
19
+ availableChannel: { id: { $eq: 'xxx' } }
20
20
  },
21
21
  ['availableChannel', 'productID']
22
22
  );
@@ -47,7 +47,7 @@ class PaymentServiceRepo {
47
47
  }
48
48
  // tslint:disable-next-line:max-func-body-length
49
49
  static CREATE_MONGO_CONDITIONS(params) {
50
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3;
50
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1;
51
51
  const andConditions = [];
52
52
  const projectIdEq = (_b = (_a = params.project) === null || _a === void 0 ? void 0 : _a.id) === null || _b === void 0 ? void 0 : _b.$eq;
53
53
  if (typeof projectIdEq === 'string') {
@@ -168,10 +168,11 @@ class PaymentServiceRepo {
168
168
  if (typeof availableChannelIdEq === 'string') {
169
169
  andConditions.push({ 'availableChannel.id': { $exists: true, $eq: availableChannelIdEq } });
170
170
  }
171
- const availableChannelServiceUrlEq = (_3 = (_2 = params.availableChannel) === null || _2 === void 0 ? void 0 : _2.serviceUrl) === null || _3 === void 0 ? void 0 : _3.$eq;
172
- if (typeof availableChannelServiceUrlEq === 'string') {
173
- andConditions.push({ 'availableChannel.serviceUrl': { $exists: true, $eq: availableChannelServiceUrlEq } });
174
- }
171
+ // discontinue(2025-03-25~)
172
+ // const availableChannelServiceUrlEq = params.availableChannel?.serviceUrl?.$eq;
173
+ // if (typeof availableChannelServiceUrlEq === 'string') {
174
+ // andConditions.push({ 'availableChannel.serviceUrl': { $exists: true, $eq: availableChannelServiceUrlEq } });
175
+ // }
175
176
  return andConditions;
176
177
  }
177
178
  /**
package/package.json CHANGED
@@ -11,8 +11,8 @@
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": "4.393.0-alpha.41",
15
- "@cinerino/sdk": "10.21.0-alpha.25",
14
+ "@chevre/factory": "4.393.0-alpha.42",
15
+ "@cinerino/sdk": "10.21.0-alpha.26",
16
16
  "@motionpicture/coa-service": "9.6.0",
17
17
  "@motionpicture/gmo-service": "5.3.0",
18
18
  "@sendgrid/client": "8.1.4",
@@ -113,5 +113,5 @@
113
113
  "postversion": "git push origin --tags",
114
114
  "prepublishOnly": "npm run clean && npm run build && npm test && npm run doc"
115
115
  },
116
- "version": "22.9.0-alpha.85"
116
+ "version": "22.9.0-alpha.86"
117
117
  }