@chevre/factory 4.276.0-alpha.2 → 4.277.0-alpha.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/account/action/moneyTransfer.d.ts +1 -0
- package/lib/action.d.ts +15 -60
- package/lib/index.d.ts +0 -1
- package/lib/order.d.ts +7 -4
- package/package.json +1 -1
|
@@ -70,6 +70,7 @@ export interface IPurpose {
|
|
|
70
70
|
}
|
|
71
71
|
export declare type IAmount = Pick<IMonetaryAmount, 'typeOf' | 'currency' | 'value'>;
|
|
72
72
|
export interface IAttributes extends ActionFactory.IAttributes<ActionType.MoneyTransfer, IObject, IResult> {
|
|
73
|
+
identifier?: string;
|
|
73
74
|
typeOf: ActionType.MoneyTransfer;
|
|
74
75
|
/**
|
|
75
76
|
* どんな取引によって発生した転送アクションか
|
package/lib/action.d.ts
CHANGED
|
@@ -5,36 +5,28 @@ import { CreativeWorkType } from './creativeWorkType';
|
|
|
5
5
|
import { OrganizationType } from './organizationType';
|
|
6
6
|
import { IPersonAttributes } from './person';
|
|
7
7
|
import { IProject } from './project';
|
|
8
|
-
import { IPropertyValue } from './propertyValue';
|
|
9
8
|
import { SortType } from './sortType';
|
|
10
|
-
export interface
|
|
11
|
-
typeOf: CreativeWorkType.WebApplication;
|
|
12
|
-
id: string;
|
|
9
|
+
export interface IParticipantOptionalAttributes {
|
|
13
10
|
name?: string;
|
|
14
11
|
url?: string;
|
|
15
12
|
}
|
|
16
|
-
export declare type
|
|
17
|
-
|
|
18
|
-
|
|
13
|
+
export declare type IParticipantAsWebApplication = IParticipantOptionalAttributes & {
|
|
14
|
+
typeOf: CreativeWorkType.WebApplication;
|
|
15
|
+
id: string;
|
|
19
16
|
};
|
|
20
|
-
export
|
|
17
|
+
export declare type IParticipantAsPerson = IParticipantOptionalAttributes & Pick<IPersonAttributes, 'id' | 'typeOf'>;
|
|
18
|
+
export declare type IParticipantAsSeller = IParticipantOptionalAttributes & {
|
|
21
19
|
typeOf: OrganizationType.Corporation;
|
|
22
20
|
id: string;
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}
|
|
26
|
-
export interface IParticipantAsProject {
|
|
21
|
+
};
|
|
22
|
+
export declare type IParticipantAsProject = IParticipantOptionalAttributes & {
|
|
27
23
|
typeOf: OrganizationType.Project;
|
|
28
24
|
id: string;
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
32
|
-
export interface IParticipantAsCustomer {
|
|
25
|
+
};
|
|
26
|
+
export declare type IParticipantAsCustomer = IParticipantOptionalAttributes & {
|
|
33
27
|
typeOf: OrganizationType.Organization;
|
|
34
28
|
id: string;
|
|
35
|
-
|
|
36
|
-
url?: string;
|
|
37
|
-
}
|
|
29
|
+
};
|
|
38
30
|
/**
|
|
39
31
|
* アクションへの関係者
|
|
40
32
|
*/
|
|
@@ -48,54 +40,23 @@ export interface IPurpose {
|
|
|
48
40
|
/**
|
|
49
41
|
* 追加属性
|
|
50
42
|
*/
|
|
51
|
-
export declare type IAdditionalProperty = IPropertyValue<string>[];
|
|
52
43
|
/**
|
|
53
44
|
* アクション属性
|
|
54
45
|
*/
|
|
55
46
|
export interface IAttributes<T extends ActionType, TObject, TResult> {
|
|
56
|
-
identifier?: string;
|
|
57
47
|
project: Pick<IProject, 'id' | 'typeOf'>;
|
|
58
|
-
/**
|
|
59
|
-
* A property-value pair representing an additional characteristics of the entitity,
|
|
60
|
-
* e.g. a product feature or another characteristic for which there is no matching property in schema.org.
|
|
61
|
-
*/
|
|
62
|
-
additionalProperty?: IAdditionalProperty;
|
|
63
|
-
/**
|
|
64
|
-
* アクション主体者
|
|
65
|
-
*/
|
|
66
48
|
agent: IParticipant;
|
|
67
|
-
/**
|
|
68
|
-
* アクション説明
|
|
69
|
-
*/
|
|
70
49
|
description?: string;
|
|
71
|
-
/**
|
|
72
|
-
* アクション失敗時のエラー結果
|
|
73
|
-
*/
|
|
74
50
|
error?: any;
|
|
75
51
|
/**
|
|
76
52
|
* The location of, for example, where an event is happening, where an organization is located, or where an action takes place.
|
|
77
53
|
*/
|
|
78
54
|
location?: any;
|
|
79
55
|
instrument?: any;
|
|
80
|
-
/**
|
|
81
|
-
* アクション対象
|
|
82
|
-
*/
|
|
83
56
|
object: TObject;
|
|
84
|
-
/**
|
|
85
|
-
* 事後に発生するアクション
|
|
86
|
-
*/
|
|
87
57
|
potentialActions?: any;
|
|
88
|
-
/**
|
|
89
|
-
* 目的
|
|
90
|
-
*/
|
|
91
58
|
purpose?: IPurpose;
|
|
92
|
-
/**
|
|
93
|
-
* アクション受取者
|
|
94
|
-
*/
|
|
95
59
|
recipient?: IParticipant;
|
|
96
|
-
/**
|
|
97
|
-
* アクション結果
|
|
98
|
-
*/
|
|
99
60
|
result?: TResult;
|
|
100
61
|
/**
|
|
101
62
|
* アクションタイプ
|
|
@@ -107,21 +68,12 @@ export interface IAttributes<T extends ActionType, TObject, TResult> {
|
|
|
107
68
|
* リポジトリに保管時にセット、あるいは変更される
|
|
108
69
|
*/
|
|
109
70
|
export interface IDynamicAttributes {
|
|
110
|
-
/**
|
|
111
|
-
* アクション状態
|
|
112
|
-
*/
|
|
113
71
|
actionStatus: ActionStatusType;
|
|
114
|
-
/**
|
|
115
|
-
* 開始日時
|
|
116
|
-
*/
|
|
117
72
|
startDate: Date;
|
|
118
|
-
/**
|
|
119
|
-
* 終了日時
|
|
120
|
-
*/
|
|
121
73
|
endDate?: Date;
|
|
122
74
|
}
|
|
123
75
|
/**
|
|
124
|
-
*
|
|
76
|
+
* アクション
|
|
125
77
|
* {@link https://schema.org/Action}
|
|
126
78
|
*/
|
|
127
79
|
export declare type IAction<TAttributes extends IAttributes<ActionType, any, any>> = IExtendId<TAttributes & IDynamicAttributes>;
|
|
@@ -159,6 +111,9 @@ export interface ISearchConditions {
|
|
|
159
111
|
};
|
|
160
112
|
};
|
|
161
113
|
location?: {
|
|
114
|
+
id?: {
|
|
115
|
+
$eq?: string;
|
|
116
|
+
};
|
|
162
117
|
identifier?: {
|
|
163
118
|
$eq?: string;
|
|
164
119
|
};
|
package/lib/index.d.ts
CHANGED
|
@@ -179,7 +179,6 @@ export import actionStatusType = ActionStatusType;
|
|
|
179
179
|
export import actionType = ActionType;
|
|
180
180
|
export declare namespace action {
|
|
181
181
|
export import IAction = ActionFactory.IAction;
|
|
182
|
-
export import IAdditionalProperty = ActionFactory.IAdditionalProperty;
|
|
183
182
|
export import IAttributes = ActionFactory.IAttributes;
|
|
184
183
|
export import IDynamicAttributes = ActionFactory.IDynamicAttributes;
|
|
185
184
|
export import IParticipantAsWebApplication = ActionFactory.IParticipantAsWebApplication;
|
package/lib/order.d.ts
CHANGED
|
@@ -177,21 +177,23 @@ export interface ISeller {
|
|
|
177
177
|
/**
|
|
178
178
|
* ウェブアプリケーションとしてのカスタマー
|
|
179
179
|
*/
|
|
180
|
-
export declare type IWebApplicationCustomer = IWebApplication & IProfile;
|
|
180
|
+
export declare type IWebApplicationCustomer = Pick<IWebApplication, 'id' | 'typeOf'> & IProfile;
|
|
181
181
|
/**
|
|
182
182
|
* 顧客組織としてのカスタマー
|
|
183
183
|
*/
|
|
184
|
-
export declare type IOrganizationCustomer = ICustomerOrganization & IProfile;
|
|
184
|
+
export declare type IOrganizationCustomer = Pick<ICustomerOrganization, 'id' | 'typeOf' | 'project'> & IProfile;
|
|
185
|
+
export declare type IPersonCustomer = Pick<IPerson, 'id' | 'typeOf' | 'memberOf'> & IProfile;
|
|
185
186
|
/**
|
|
186
187
|
* カスタマー
|
|
187
188
|
*/
|
|
188
|
-
export declare type ICustomer =
|
|
189
|
+
export declare type ICustomer = IPersonCustomer | IWebApplicationCustomer | IOrganizationCustomer;
|
|
189
190
|
export declare type IBroker = IPerson;
|
|
190
191
|
/**
|
|
191
192
|
* 返品者
|
|
192
193
|
*/
|
|
193
194
|
export declare type IReturner = IParticipant;
|
|
194
195
|
export declare type IIdentifier = IPropertyValue<string>[];
|
|
196
|
+
export declare type ISimpleCustomer = Pick<ICustomer, 'id' | 'typeOf' | 'name'>;
|
|
195
197
|
export interface ISimpleOrder extends Pick<IThing, 'name'> {
|
|
196
198
|
/**
|
|
197
199
|
* object type
|
|
@@ -204,7 +206,7 @@ export interface ISimpleOrder extends Pick<IThing, 'name'> {
|
|
|
204
206
|
/**
|
|
205
207
|
* Party placing the order.
|
|
206
208
|
*/
|
|
207
|
-
customer:
|
|
209
|
+
customer: ISimpleCustomer;
|
|
208
210
|
/**
|
|
209
211
|
* A number that confirms the given order or payment has been received.
|
|
210
212
|
*/
|
|
@@ -274,6 +276,7 @@ export interface IOrder extends ISimpleOrder {
|
|
|
274
276
|
* In most cases a broker never acquires or releases ownership of a product or service involved in an exchange.
|
|
275
277
|
*/
|
|
276
278
|
broker?: IBroker;
|
|
279
|
+
customer: ICustomer;
|
|
277
280
|
/**
|
|
278
281
|
* Date order was returned.
|
|
279
282
|
*/
|