@chevre/factory 4.319.0 → 4.320.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.
@@ -2,6 +2,7 @@ import { IAccountTitle } from '../accountTitle';
2
2
  import { IExtendId } from '../autoGenerated';
3
3
  import { ICategoryCode } from '../categoryCode';
4
4
  import { CreativeWorkType } from '../creativeWorkType';
5
+ import { EventType } from '../eventType';
5
6
  import { OrganizationType } from '../organizationType';
6
7
  import { PlaceType } from '../placeType';
7
8
  import { ProductType } from '../product';
@@ -9,8 +10,8 @@ import * as TaskFactory from '../task';
9
10
  import { TaskName } from '../taskName';
10
11
  export declare type AccountTitleType = IAccountTitle['typeOf'];
11
12
  export declare type CategoryCodeType = ICategoryCode['typeOf'];
12
- export declare type IResourceTypeOf = AccountTitleType | CategoryCodeType | CreativeWorkType | OrganizationType.Corporation | PlaceType.MovieTheater | ProductType;
13
- export interface IData {
13
+ export declare type IResourceTypeOf = AccountTitleType | CategoryCodeType | CreativeWorkType | EventType.ScreeningEventSeries | OrganizationType.Corporation | PlaceType.MovieTheater | ProductType;
14
+ export interface IData4common {
14
15
  id: string[];
15
16
  project: {
16
17
  id: string;
@@ -20,6 +21,25 @@ export interface IData {
20
21
  isDeleted?: boolean;
21
22
  useInform: boolean;
22
23
  }
24
+ export interface IData4screeningRoom {
25
+ /**
26
+ * ルームコード
27
+ */
28
+ branchCode: string;
29
+ containedInPlace: {
30
+ /**
31
+ * 施設ID
32
+ */
33
+ id: string;
34
+ };
35
+ project: {
36
+ id: string;
37
+ };
38
+ typeOf: PlaceType.ScreeningRoom;
39
+ isDeleted: boolean;
40
+ useInform: boolean;
41
+ }
42
+ export declare type IData = IData4common | IData4screeningRoom;
23
43
  export interface IAttributes extends TaskFactory.IAttributes {
24
44
  name: TaskName.OnResourceUpdated;
25
45
  data: IData;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.319.0",
3
+ "version": "4.320.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",