@chevre/factory 4.381.0-alpha.8 → 4.381.0-alpha.9
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.
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { IInvoice } from '../invoice';
|
|
2
2
|
import { IMultilingualString } from '../multilingualString';
|
|
3
3
|
import { IPermit } from '../permit';
|
|
4
|
-
import { IAvailableChannel as IProductAvailableChannel,
|
|
4
|
+
import { IAvailableChannel as IProductAvailableChannel, IServiceType } from '../product';
|
|
5
5
|
import { IProject } from '../project';
|
|
6
6
|
import { IPropertyValue } from '../propertyValue';
|
|
7
7
|
import { ISeller } from '../seller';
|
|
8
|
+
import { SortType } from '../sortType';
|
|
8
9
|
import { IThing } from '../thing';
|
|
9
10
|
export declare enum PaymentServiceType {
|
|
10
11
|
CreditCard = "CreditCard",
|
|
@@ -131,9 +132,65 @@ export interface IService extends Pick<IThing, 'name' | 'description'> {
|
|
|
131
132
|
serviceType: IServiceType;
|
|
132
133
|
additionalProperty?: IPropertyValue<string>[];
|
|
133
134
|
}
|
|
134
|
-
export
|
|
135
|
+
export interface ISortOrder {
|
|
136
|
+
productID?: SortType;
|
|
137
|
+
}
|
|
138
|
+
export interface ISearchConditions {
|
|
139
|
+
limit?: number;
|
|
140
|
+
page?: number;
|
|
141
|
+
sort?: ISortOrder;
|
|
142
|
+
project?: {
|
|
143
|
+
id?: {
|
|
144
|
+
$eq?: string;
|
|
145
|
+
};
|
|
146
|
+
};
|
|
147
|
+
id?: {
|
|
148
|
+
$eq?: string;
|
|
149
|
+
$in?: string[];
|
|
150
|
+
};
|
|
151
|
+
name?: {
|
|
152
|
+
$regex?: string;
|
|
153
|
+
};
|
|
154
|
+
productID?: {
|
|
155
|
+
$eq?: string;
|
|
156
|
+
$in?: string[];
|
|
157
|
+
$regex?: string;
|
|
158
|
+
};
|
|
159
|
+
provider?: {
|
|
160
|
+
id?: {
|
|
161
|
+
/**
|
|
162
|
+
* プロバイダーに指定IDの販売者が含まれる
|
|
163
|
+
*/
|
|
164
|
+
$eq?: string;
|
|
165
|
+
};
|
|
166
|
+
};
|
|
135
167
|
typeOf?: {
|
|
136
168
|
$eq?: PaymentServiceType;
|
|
137
169
|
$in?: PaymentServiceType[];
|
|
138
170
|
};
|
|
139
|
-
|
|
171
|
+
serviceOutput?: {
|
|
172
|
+
typeOf?: {
|
|
173
|
+
$eq?: string;
|
|
174
|
+
};
|
|
175
|
+
amount?: {
|
|
176
|
+
currency?: {
|
|
177
|
+
$eq?: string;
|
|
178
|
+
};
|
|
179
|
+
};
|
|
180
|
+
issuedThrough?: {
|
|
181
|
+
serviceType?: {
|
|
182
|
+
codeValue?: {
|
|
183
|
+
/**
|
|
184
|
+
* 出力メンバーシップ区分コード
|
|
185
|
+
*/
|
|
186
|
+
$eq?: string;
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
};
|
|
190
|
+
};
|
|
191
|
+
serviceType?: {
|
|
192
|
+
codeValue?: {
|
|
193
|
+
$eq?: string;
|
|
194
|
+
};
|
|
195
|
+
};
|
|
196
|
+
}
|