@chevre/factory 4.347.0-alpha.12 → 4.347.0-alpha.13

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.
package/lib/product.d.ts CHANGED
@@ -93,10 +93,6 @@ export interface IProduct extends Pick<IThing, 'name' | 'description'> {
93
93
  * 名称
94
94
  */
95
95
  name?: Pick<IMultilingualString, 'en' | 'ja'>;
96
- /**
97
- * An offer to provide this item
98
- */
99
- offers?: IOffer[];
100
96
  /**
101
97
  * The product identifier, such as ISBN. For example: meta itemprop="productID" content="isbn:123-456-789".
102
98
  * プロジェクト内でユニークなプロダクトID
@@ -107,10 +107,6 @@ export interface IService extends Pick<IThing, 'name' | 'description'> {
107
107
  * プロジェクト内でユニークなプロダクトID
108
108
  */
109
109
  productID: string;
110
- /**
111
- * 決済サービス提供者(決済サービスを利用する販売者)
112
- */
113
- provider?: IProvider[];
114
110
  /**
115
111
  * The tangible thing generated by the service, e.g. a passport, permit, etc.
116
112
  * (InvoiceやPermit)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.347.0-alpha.12",
3
+ "version": "4.347.0-alpha.13",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",