@chevre/factory 4.393.0-alpha.26 → 4.393.0-alpha.28

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.
@@ -13,7 +13,7 @@ export interface IPotentialInformAction {
13
13
  /**
14
14
  * define recipient(2025-02-14~)
15
15
  */
16
- recipient?: IInformRecipient;
16
+ recipient: IInformRecipient;
17
17
  target: IEntryPoint;
18
18
  typeOf: ActionType.InformAction;
19
19
  }
@@ -67,7 +67,11 @@ export interface IProvider extends Pick<ISeller, 'typeOf'> {
67
67
  credentials?: IProviderCredentials;
68
68
  }
69
69
  export type IAvailableChannel = Pick<IProductAvailableChannel, 'typeOf'> & {
70
- serviceUrl: string;
70
+ /**
71
+ * add paymentServiceChannel ID(2025-02-21~)
72
+ */
73
+ id?: string;
74
+ serviceUrl?: string;
71
75
  credentials?: never;
72
76
  totalPaymentDue?: {
73
77
  maxValue?: number;
@@ -151,6 +155,9 @@ export interface ISearchConditions {
151
155
  };
152
156
  };
153
157
  availableChannel?: {
158
+ id?: {
159
+ $eq?: string;
160
+ };
154
161
  serviceUrl?: {
155
162
  $eq?: string;
156
163
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.393.0-alpha.26",
3
+ "version": "4.393.0-alpha.28",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",