@chevre/factory 4.317.0 → 4.319.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.
@@ -10,6 +10,10 @@ export interface IData {
10
10
  typeOf: EventType;
11
11
  isNew: boolean;
12
12
  useInform: boolean;
13
+ /**
14
+ * 関連リソースへの同期有無(2023-07-28~)
15
+ */
16
+ useSync?: boolean;
13
17
  }
14
18
  export interface IAttributes extends TaskFactory.IAttributes {
15
19
  name: TaskName.OnEventChanged;
@@ -2,13 +2,14 @@ import { IAccountTitle } from '../accountTitle';
2
2
  import { IExtendId } from '../autoGenerated';
3
3
  import { ICategoryCode } from '../categoryCode';
4
4
  import { CreativeWorkType } from '../creativeWorkType';
5
+ import { OrganizationType } from '../organizationType';
5
6
  import { PlaceType } from '../placeType';
6
7
  import { ProductType } from '../product';
7
8
  import * as TaskFactory from '../task';
8
9
  import { TaskName } from '../taskName';
9
10
  export declare type AccountTitleType = IAccountTitle['typeOf'];
10
11
  export declare type CategoryCodeType = ICategoryCode['typeOf'];
11
- export declare type IResourceTypeOf = AccountTitleType | CategoryCodeType | CreativeWorkType | PlaceType.MovieTheater | ProductType;
12
+ export declare type IResourceTypeOf = AccountTitleType | CategoryCodeType | CreativeWorkType | OrganizationType.Corporation | PlaceType.MovieTheater | ProductType;
12
13
  export interface IData {
13
14
  id: string[];
14
15
  project: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.317.0",
3
+ "version": "4.319.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",