@chevre/factory 4.316.0-alpha.0 → 4.316.0-alpha.1

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.
Files changed (2) hide show
  1. package/lib/order.d.ts +11 -0
  2. package/package.json +1 -1
package/lib/order.d.ts CHANGED
@@ -383,6 +383,9 @@ export interface ISellerSearchConditions {
383
383
  * 販売者IDリスト
384
384
  */
385
385
  ids?: string[];
386
+ id?: {
387
+ $eq?: string;
388
+ };
386
389
  }
387
390
  export interface ICustomerSearchConditions {
388
391
  typeOf?: PersonType;
@@ -538,6 +541,14 @@ export interface ISearchConditions {
538
541
  * 販売者条件
539
542
  */
540
543
  seller?: ISellerSearchConditions;
544
+ /**
545
+ * 販売者条件(リクエストによるフィルター専用)
546
+ */
547
+ provider?: {
548
+ id?: {
549
+ $eq?: string;
550
+ };
551
+ };
541
552
  /**
542
553
  * 顧客条件
543
554
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.316.0-alpha.0",
3
+ "version": "4.316.0-alpha.1",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",