@chevre/factory 4.315.0-alpha.2 → 4.315.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.
@@ -1,6 +1,7 @@
1
1
  import { IMultilingualString } from '../multilingualString';
2
2
  import * as PlaceFactory from '../place';
3
3
  import { PlaceType } from '../placeType';
4
+ import { ISeller } from '../seller';
4
5
  import { IPlace as IScreeningRoomSection } from './screeningRoomSection';
5
6
  export interface IContainedInPlace {
6
7
  id: string;
@@ -8,6 +9,9 @@ export interface IContainedInPlace {
8
9
  branchCode: string;
9
10
  name: IMultilingualString;
10
11
  }
12
+ export declare type IParentOrganization = Pick<ISeller, 'typeOf' | 'id'> & {
13
+ id: string;
14
+ };
11
15
  /**
12
16
  * ルームインターフェース
13
17
  */
@@ -34,6 +38,7 @@ export interface IPlace extends Pick<PlaceFactory.IPlace, 'project' | 'typeOf' |
34
38
  * セクション数
35
39
  */
36
40
  sectionCount?: number;
41
+ parentOrganization: IParentOrganization;
37
42
  }
38
43
  export interface ISearchConditions {
39
44
  limit?: number;
@@ -44,6 +49,11 @@ export interface ISearchConditions {
44
49
  $eq?: string;
45
50
  };
46
51
  };
52
+ parentOrganization?: {
53
+ id?: {
54
+ $eq?: string;
55
+ };
56
+ };
47
57
  branchCode?: {
48
58
  $eq?: string;
49
59
  $in?: string[];
@@ -31,6 +31,11 @@ export interface ISearchConditions {
31
31
  $eq?: string;
32
32
  };
33
33
  };
34
+ parentOrganization?: {
35
+ id?: {
36
+ $eq?: string;
37
+ };
38
+ };
34
39
  branchCode?: {
35
40
  $eq?: string;
36
41
  $regex?: string;
@@ -59,6 +59,11 @@ export interface ISearchConditions {
59
59
  $eq?: string;
60
60
  };
61
61
  };
62
+ parentOrganization?: {
63
+ id?: {
64
+ $eq?: string;
65
+ };
66
+ };
62
67
  branchCode?: {
63
68
  $eq?: string;
64
69
  $in?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.315.0-alpha.2",
3
+ "version": "4.315.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",