@chevre/factory 4.395.0-alpha.0 → 4.395.0-alpha.2

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,7 +10,14 @@ export interface ISubjectAsWebApplication {
10
10
  id: string;
11
11
  typeOf: CreativeWorkType.WebApplication;
12
12
  }
13
- export type IAbout = ISubjectAsWebApplication;
13
+ export interface ISubjectAsSoftwareApplication {
14
+ /**
15
+ * クライアントID
16
+ */
17
+ id: string;
18
+ typeOf: CreativeWorkType.SoftwareApplication;
19
+ }
20
+ export type IAbout = ISubjectAsWebApplication | ISubjectAsSoftwareApplication;
14
21
  export interface IIssuedBy {
15
22
  /**
16
23
  * IDP識別子
@@ -1,13 +1,6 @@
1
1
  import { IAction as IReturnOrderAction } from '../action/transfer/return/order';
2
2
  import { IAcceptedOffer, IItemOffered, IOrder } from '../order';
3
3
  import { OrderStatus } from '../orderStatus';
4
- /**
5
- * 返品通知
6
- */
7
- export type IReturnedOrder4inform = Pick<IOrder, 'project' | 'typeOf' | 'orderNumber' | 'dateReturned'> & {
8
- id?: string;
9
- orderStatus: OrderStatus.OrderReturned;
10
- };
11
4
  export type IReturnAction4inform = Pick<IReturnOrderAction, 'id' | 'instrument' | 'object' | 'project' | 'typeOf'>;
12
5
  /**
13
6
  * 注文作成通知
@@ -40,4 +33,4 @@ export type IUpdatedOrder4inform = Pick<IOrder, 'typeOf' | 'orderNumber' | 'name
40
33
  updatedAt: Date;
41
34
  orderStatus?: never;
42
35
  };
43
- export type IOrder4inform = IProcessingOrder4inform | IInTransitOrder4inform | IDeliveredOrder4inform | IReturnedOrder4inform | IUpdatedOrder4inform | IReturnAction4inform;
36
+ export type IOrder4inform = IProcessingOrder4inform | IInTransitOrder4inform | IDeliveredOrder4inform | IUpdatedOrder4inform | IReturnAction4inform;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.395.0-alpha.0",
3
+ "version": "4.395.0-alpha.2",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",