@chevre/factory 4.394.0-alpha.5 → 4.394.0-alpha.6

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,4 +1,13 @@
1
1
  {
2
+ /**
3
+ * アイテムコンディション
4
+ *
5
+ * 未定義: 使用済予約の有無に関わらず返品可能
6
+ * NewCondition: 使用済予約が存在しない場合のみ返品可能
7
+ *
8
+ * NewCondition以外の値は不適切な返品ポリシーとして扱われます
9
+ */
10
+ "itemCondition": "NewCondition",
2
11
  "restockingFee": {
3
12
  /**
4
13
  * 返品手数料
package/lib/iam.d.ts CHANGED
@@ -64,10 +64,6 @@ export interface IRole {
64
64
  typeOf: RoleType;
65
65
  permissions: string[];
66
66
  roleName: RoleName;
67
- memberOf: {
68
- typeOf: OrganizationType.Project;
69
- id: string;
70
- };
71
67
  }
72
68
  /**
73
69
  * IAMロール検索条件
@@ -85,6 +81,16 @@ export interface IRoleSearchConditions {
85
81
  permissions?: {
86
82
  $eq?: string;
87
83
  };
84
+ member?: {
85
+ typeOf: {
86
+ $eq?: string;
87
+ };
88
+ };
89
+ memberOf?: {
90
+ typeOf: {
91
+ $eq?: string;
92
+ };
93
+ };
88
94
  }
89
95
  export type IMemberType = PersonType | CreativeWorkType.WebApplication | CreativeWorkType.SoftwareApplication;
90
96
  export type IMemberRole = Pick<IRole, 'typeOf' | 'roleName'>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.394.0-alpha.5",
3
+ "version": "4.394.0-alpha.6",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",