@chevre/factory 4.393.0-alpha.14 → 4.393.0-alpha.15

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.
@@ -3,7 +3,7 @@ import { ActionType } from '../../actionType';
3
3
  import { AssetTransactionType } from '../../assetTransactionType';
4
4
  import { IOrder } from '../../order';
5
5
  export type IAgent = ActionFactory.IParticipantAsProject;
6
- export type IRecipient = ActionFactory.IParticipant & {
6
+ export type IRecipient = Pick<ActionFactory.IParticipant, 'id' | 'name' | 'typeOf'> & {
7
7
  url: string;
8
8
  };
9
9
  export type IObject = any;
package/lib/action.d.ts CHANGED
@@ -10,7 +10,6 @@ import { IProject } from './project';
10
10
  import { SortType } from './sortType';
11
11
  export interface IParticipantOptionalAttributes {
12
12
  name?: string;
13
- url?: string;
14
13
  }
15
14
  export type IParticipantAsWebApplication = IParticipantOptionalAttributes & {
16
15
  typeOf: CreativeWorkType.WebApplication;
@@ -3,7 +3,9 @@ import { IExtendId } from '../autoGenerated';
3
3
  import { IEntryPoint } from '../entryPoint';
4
4
  import * as TaskFactory from '../task';
5
5
  import { TaskName } from '../taskName';
6
- export type IRecipient = Pick<IInformRecipient, 'id' | 'name' | 'typeOf' | 'url'>;
6
+ export type IRecipient = Pick<IInformRecipient, 'id' | 'name' | 'typeOf'> & {
7
+ url?: never;
8
+ };
7
9
  export type IPotentialInformAction = Pick<IInformActionAttributes<IObject>, 'object' | 'purpose' | 'about'> & {
8
10
  /**
9
11
  * 通知識別子(2024-10-24~)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.393.0-alpha.14",
3
+ "version": "4.393.0-alpha.15",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",