@chevre/factory 11.0.0-alpha.4 → 11.0.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.
- package/lib/chevre/seller.d.ts +1 -5
- package/package.json +1 -1
package/lib/chevre/seller.d.ts
CHANGED
|
@@ -34,11 +34,8 @@ export interface IMakesOffer extends Pick<IOffer, 'typeOf'> {
|
|
|
34
34
|
*/
|
|
35
35
|
eligibleTransactionDuration: IEligibleTransactionDuration;
|
|
36
36
|
}
|
|
37
|
-
export interface ISeller extends Pick<IOrganization, 'typeOf' | 'id' | '
|
|
37
|
+
export interface ISeller extends Pick<IOrganization, 'typeOf' | 'id' | 'telephone' | 'additionalProperty' | 'name' | 'url'> {
|
|
38
38
|
project: Pick<IProject, 'id' | 'typeOf'>;
|
|
39
|
-
/**
|
|
40
|
-
* The geographic area where a service or offered item is provided.
|
|
41
|
-
*/
|
|
42
39
|
branchCode: string;
|
|
43
40
|
/**
|
|
44
41
|
* Indicates a MerchantReturnPolicy that may be applicable.
|
|
@@ -49,7 +46,6 @@ export interface ISeller extends Pick<IOrganization, 'typeOf' | 'id' | 'location
|
|
|
49
46
|
* 各アプリケーションに対するオファー
|
|
50
47
|
*/
|
|
51
48
|
makesOffer?: IMakesOffer[];
|
|
52
|
-
paymentAccepted?: IPaymentAccepted[];
|
|
53
49
|
typeOf: OrganizationType.Corporation;
|
|
54
50
|
}
|
|
55
51
|
/**
|