@chevre/factory 4.364.0-alpha.6 → 4.364.0

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.
@@ -123,6 +123,9 @@ export interface ISeller {
123
123
  */
124
124
  id: string;
125
125
  name?: IMultilingualString;
126
+ /**
127
+ * アプリケーションごとのオファー
128
+ */
126
129
  makesOffer: ISellerMakesOffer[];
127
130
  }
128
131
  export import IEligibleQuantity = OfferFactory.IEligibleQuantity;
@@ -85,7 +85,7 @@ export interface IOffer {
85
85
  unacceptedPaymentMethod?: EventFactory.IUnacceptedPaymentMethodType[];
86
86
  seller: ISeller;
87
87
  }
88
- export type IOffer4COA = Pick<IOffer, 'typeOf' | 'offeredThrough'> & {
88
+ export type IOffer4COA = Pick<IOffer, 'typeOf' | 'offeredThrough' | 'eligibleQuantity' | 'seller'> & {
89
89
  itemOffered: {
90
90
  serviceOutput: Pick<IServiceOutput, 'reservedTicket'>;
91
91
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.364.0-alpha.6",
3
+ "version": "4.364.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",