@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.
package/lib/potentialAction.d.ts
CHANGED
|
@@ -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
|
-
|
|
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
|
};
|