@chevre/factory 4.358.0 → 4.360.0-alpha.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.
@@ -70,6 +70,18 @@ export interface ICOAInfo {
70
70
  * ※日付は西暦8桁 "YYYYMMDD"
71
71
  */
72
72
  dateMvtkBegin: string;
73
+ /**
74
+ * MGチケット使用フラグ
75
+ * 0:使用不可、1:使用可、2:無料券(計上単価=0)使用不可
76
+ * (2024-03-05~)
77
+ */
78
+ flgMgtkUse?: string;
79
+ /**
80
+ * MGチケット利用開始日
81
+ * ※日付は西暦8桁 "YYYYMMDD"
82
+ * (2024-03-05~)
83
+ */
84
+ dateMgtkBegin?: string;
73
85
  }
74
86
  export interface ILocation {
75
87
  typeOf: PlaceType.MovieTheater;
@@ -4,7 +4,6 @@ import * as PermitFactory from './permit';
4
4
  import { PersonType } from './personType';
5
5
  import * as ProductFactory from './product';
6
6
  import { IProject } from './project';
7
- import { IPropertyValue } from './propertyValue';
8
7
  import { IReservation as IBusReservation } from './reservation/busReservation';
9
8
  import { IReservation as IEventReservation } from './reservation/event';
10
9
  import { ReservationType } from './reservationType';
@@ -64,24 +63,22 @@ export type IGood = IReservation | IPermitAsGood;
64
63
  * 所有対象物(対象物詳細有)
65
64
  */
66
65
  export type IGoodWithDetail = IReservationWithDetail | PermitFactory.IPermit;
67
- /**
68
- * 所有者
69
- */
70
66
  export interface IOwnerAsOrganization {
71
67
  typeOf: OrganizationType.Organization;
72
68
  id: string;
73
- identifier?: IPropertyValue<string>[];
74
69
  }
75
70
  export interface IOwnerAsPerson {
76
71
  typeOf: PersonType;
77
72
  id: string;
78
- identifier?: IPropertyValue<string>[];
79
73
  }
80
74
  export interface IOwnerAsWebApplication {
81
75
  typeOf: CreativeWorkType.WebApplication;
82
76
  id: string;
83
- identifier?: IPropertyValue<string>[];
84
77
  }
78
+ /**
79
+ * 所有者
80
+ * 個人情報排除するように
81
+ */
85
82
  export type IOwner = IOwnerAsOrganization | IOwnerAsPerson | IOwnerAsWebApplication;
86
83
  export interface IAcquiredFrom {
87
84
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.358.0",
3
+ "version": "4.360.0-alpha.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -54,8 +54,8 @@
54
54
  },
55
55
  "dependencies": {
56
56
  "@aws-sdk/client-cognito-identity-provider": "3.438.0",
57
- "@motionpicture/coa-service": "9.3.0-alpha.5",
58
- "@motionpicture/gmo-service": "5.3.0-alpha.4",
57
+ "@motionpicture/coa-service": "9.4.0-alpha.0",
58
+ "@motionpicture/gmo-service": "5.3.0",
59
59
  "@surfrock/sdk": "1.1.0",
60
60
  "@waiter/factory": "2.2.0",
61
61
  "setprototypeof": "1.2.0"