@chevre/factory 4.331.0 → 4.332.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/project.d.ts +13 -8
- package/package.json +1 -1
package/lib/project.d.ts
CHANGED
|
@@ -60,23 +60,28 @@ export interface ISettings {
|
|
|
60
60
|
useMyCreditCards?: boolean;
|
|
61
61
|
useUsernameAsGMOMemberId?: boolean;
|
|
62
62
|
}
|
|
63
|
+
export interface ISubscription {
|
|
64
|
+
identifier?: string;
|
|
65
|
+
/**
|
|
66
|
+
* プロダクトとしての興行管理を利用するかどうか
|
|
67
|
+
*/
|
|
68
|
+
useEventServiceAsProduct?: boolean;
|
|
69
|
+
/**
|
|
70
|
+
* サブカタログ管理を利用するかどうか
|
|
71
|
+
*/
|
|
72
|
+
useOfferCatalogItem?: boolean;
|
|
73
|
+
}
|
|
63
74
|
/**
|
|
64
75
|
* プロジェクト
|
|
65
76
|
*/
|
|
66
|
-
export interface IProject extends IOrganization {
|
|
77
|
+
export interface IProject extends Pick<IOrganization, 'id' | 'logo' | 'name' | 'typeOf'> {
|
|
67
78
|
typeOf: OrganizationType.Project;
|
|
68
79
|
id: string;
|
|
69
80
|
alternateName?: string;
|
|
70
81
|
description?: string;
|
|
71
82
|
name?: string;
|
|
72
83
|
settings?: ISettings;
|
|
73
|
-
subscription?:
|
|
74
|
-
identifier?: string;
|
|
75
|
-
/**
|
|
76
|
-
* プロダクトとしての興行管理を利用するかどうか
|
|
77
|
-
*/
|
|
78
|
-
useEventServiceAsProduct?: boolean;
|
|
79
|
-
};
|
|
84
|
+
subscription?: ISubscription;
|
|
80
85
|
}
|
|
81
86
|
/**
|
|
82
87
|
* ソート条件
|