@chevre/factory 4.394.0 → 4.395.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.
@@ -4,6 +4,9 @@ import { OrganizationType } from '../../organizationType';
4
4
  import { IProject } from '../../project';
5
5
  import { SortType } from '../../sortType';
6
6
  export interface ISubjectAsWebApplication {
7
+ /**
8
+ * クライアントID
9
+ */
7
10
  id: string;
8
11
  typeOf: CreativeWorkType.WebApplication;
9
12
  }
@@ -21,8 +24,9 @@ export interface IIssuedBy {
21
24
  export interface ICertification extends Pick<CreativeWorkFactory.ICreativeWork, 'id' | 'typeOf'> {
22
25
  /**
23
26
  * IDP
27
+ * 複数存在する場合、どのIDPでも受け入れる想定
24
28
  */
25
- issuedBy: IIssuedBy;
29
+ issuedBy: IIssuedBy | IIssuedBy[];
26
30
  project: Pick<IProject, 'id' | 'typeOf'>;
27
31
  /**
28
32
  * subject
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.394.0",
3
+ "version": "4.395.0-alpha.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",