@chevre/domain 21.7.0-alpha.1 → 21.7.0-alpha.2

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.
@@ -25,7 +25,7 @@
25
25
  import { Connection } from 'mongoose';
26
26
  import * as factory from '../factory';
27
27
  export type IProduct = factory.product.IProduct | factory.service.paymentService.IService;
28
- export type IPaymentServiceByProvider = Pick<factory.service.paymentService.IService, 'name' | 'description' | 'typeOf' | 'id' | 'productID' | 'serviceType' | 'additionalProperty'> & {
28
+ export type IPaymentServiceByProvider = Pick<factory.service.paymentService.IService, 'name' | 'description' | 'typeOf' | 'id' | 'productID' | 'serviceType' | 'serviceOutput' | 'additionalProperty'> & {
29
29
  provider?: Pick<factory.service.paymentService.IProvider, 'credentials'>;
30
30
  };
31
31
  /**
@@ -286,6 +286,7 @@ class MongoRepository {
286
286
  name: '$name',
287
287
  // provider: [ [Object] ],
288
288
  additionalProperty: '$additionalProperty',
289
+ serviceOutput: '$serviceOutput',
289
290
  serviceType: '$serviceType',
290
291
  id: { $toString: '$_id' },
291
292
  // ↓セキュアな情報を隠蔽するように
package/package.json CHANGED
@@ -117,5 +117,5 @@
117
117
  "postversion": "git push origin --tags",
118
118
  "prepublishOnly": "npm run clean && npm run build && npm test && npm run doc"
119
119
  },
120
- "version": "21.7.0-alpha.1"
120
+ "version": "21.7.0-alpha.2"
121
121
  }