@final-commerce/command-frame 0.5.0-preprod.4 → 0.5.0-preprod.5
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/dist/actions/calculate-refund-total/action.js +2 -2
- package/dist/actions/can-transition/types.d.ts +1 -1
- package/dist/actions/cash-payment/types.d.ts +6 -3
- package/dist/actions/get-refunds/types.d.ts +1 -1
- package/dist/actions/get-remaining-refundable-quantities/action.js +2 -2
- package/dist/actions/process-partial-refund/types.d.ts +5 -4
- package/dist/actions/select-all-refund-items/action.js +2 -2
- package/dist/actions/set-active-refund/types.d.ts +1 -1
- package/dist/actions/set-refund-stock-action/types.d.ts +1 -1
- package/dist/actions/tap-to-pay-payment/types.d.ts +6 -3
- package/dist/actions/void-order/types.d.ts +4 -3
- package/package.json +1 -1
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
* Calls the calculateRefundTotal action on the parent window
|
|
4
4
|
*/
|
|
5
5
|
import { commandFrameClient } from "../../client";
|
|
6
|
-
export const calculateRefundTotal = async () => {
|
|
7
|
-
return await commandFrameClient.call("calculateRefundTotal");
|
|
6
|
+
export const calculateRefundTotal = async (params) => {
|
|
7
|
+
return await commandFrameClient.call("calculateRefundTotal", params);
|
|
8
8
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { CFStatePair, CFTransitionResult } from "../../common-types/order-state";
|
|
2
2
|
export interface CanTransitionParams {
|
|
3
|
-
/** Order to evaluate.
|
|
3
|
+
/** Order to evaluate. Defaults to the active order; if there is no active order (or none matches), evaluates as a brand-new order (from = null). */
|
|
4
4
|
orderId?: string;
|
|
5
5
|
/** Target state pair to transition to. */
|
|
6
6
|
to: CFStatePair;
|
|
@@ -3,14 +3,17 @@ export interface CashPaymentParams {
|
|
|
3
3
|
/**
|
|
4
4
|
* The amount to pay with this tender, in integer MINOR currency units
|
|
5
5
|
* (e.g. 1575 = $15.75 — see `getContext().minorUnits` for the currency's
|
|
6
|
-
* exponent). Required
|
|
7
|
-
*
|
|
6
|
+
* exponent). Required whenever the balance due is greater than $0; may be
|
|
7
|
+
* omitted only on a cart that already nets to a $0 balance due (e.g. fully
|
|
8
|
+
* discounted), where it defaults to 0. Semantics against the cart's
|
|
9
|
+
* balance due:
|
|
10
|
+
* - missing → error, unless the balance due is $0 (→ 0)
|
|
8
11
|
* - less than balance → partial payment (the POS enters a fixed
|
|
9
12
|
* split-payment leg for this amount)
|
|
10
13
|
* - equal to balance → full payment
|
|
11
14
|
* - more than balance → error (overpayment is `tenderedAmount`'s job)
|
|
12
15
|
*/
|
|
13
|
-
amount
|
|
16
|
+
amount?: number;
|
|
14
17
|
/**
|
|
15
18
|
* Cash physically handed over by the customer, in integer MINOR currency
|
|
16
19
|
* units. When provided, the POS computes the change itself (after applying
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
* Calls the getRemainingRefundableQuantities action on the parent window
|
|
4
4
|
*/
|
|
5
5
|
import { commandFrameClient } from "../../client";
|
|
6
|
-
export const getRemainingRefundableQuantities = async () => {
|
|
7
|
-
return await commandFrameClient.call("getRemainingRefundableQuantities");
|
|
6
|
+
export const getRemainingRefundableQuantities = async (params) => {
|
|
7
|
+
return await commandFrameClient.call("getRemainingRefundableQuantities", params);
|
|
8
8
|
};
|
|
@@ -2,10 +2,11 @@ export interface ProcessPartialRefundParams {
|
|
|
2
2
|
/**
|
|
3
3
|
* Optional refund reason.
|
|
4
4
|
*
|
|
5
|
-
*
|
|
6
|
-
* state-event audit row
|
|
7
|
-
*
|
|
8
|
-
*
|
|
5
|
+
* Recorded verbatim on the persisted `Refund` doc's `reason` field and on
|
|
6
|
+
* the state-event audit row — same as `redeemRefund`. When omitted, the
|
|
7
|
+
* refund doc's `reason` stays unset and only the audit row carries the
|
|
8
|
+
* 'partial-refund' fallback label. See the README's "`reason` persistence"
|
|
9
|
+
* section.
|
|
9
10
|
*/
|
|
10
11
|
reason?: string;
|
|
11
12
|
/** Optional: specify which order to refund (sets it as active). */
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
* Calls the selectAllRefundItems action on the parent window
|
|
4
4
|
*/
|
|
5
5
|
import { commandFrameClient } from "../../client";
|
|
6
|
-
export const selectAllRefundItems = async () => {
|
|
7
|
-
return await commandFrameClient.call("selectAllRefundItems");
|
|
6
|
+
export const selectAllRefundItems = async (params) => {
|
|
7
|
+
return await commandFrameClient.call("selectAllRefundItems", params);
|
|
8
8
|
};
|
|
@@ -7,4 +7,4 @@ export interface SetActiveRefundResponse {
|
|
|
7
7
|
refund: CFActiveRefundDetails;
|
|
8
8
|
timestamp: string;
|
|
9
9
|
}
|
|
10
|
-
export type SetActiveRefund = (params
|
|
10
|
+
export type SetActiveRefund = (params: SetActiveRefundParams) => Promise<SetActiveRefundResponse>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export interface SetRefundStockActionParams {
|
|
2
2
|
orderId?: string;
|
|
3
|
-
/** The 'key' field from getLineItemsByOrder response (internalId
|
|
3
|
+
/** The 'key' field from getLineItemsByOrder response (internalId, falling back to variantId). */
|
|
4
4
|
itemKey: string;
|
|
5
5
|
action: 'RESTOCK' | 'REFUND_DAMAGE';
|
|
6
6
|
}
|
|
@@ -2,14 +2,17 @@ import { CFOrder } from "../../CommonTypes";
|
|
|
2
2
|
export interface TapToPayPaymentParams {
|
|
3
3
|
/**
|
|
4
4
|
* The amount to pay with this tender, in integer MINOR currency units
|
|
5
|
-
* (e.g. 1575 = $15.75). Required
|
|
6
|
-
*
|
|
5
|
+
* (e.g. 1575 = $15.75). Required whenever the balance due is greater than
|
|
6
|
+
* $0; may be omitted only on a cart that already nets to a $0 balance due
|
|
7
|
+
* (e.g. fully discounted), where it defaults to 0. Semantics against the
|
|
8
|
+
* cart's balance due:
|
|
9
|
+
* - missing → error, unless the balance due is $0 (→ 0)
|
|
7
10
|
* - less than balance → partial payment (the POS enters a fixed
|
|
8
11
|
* split-payment leg for this amount)
|
|
9
12
|
* - equal to balance → full payment
|
|
10
13
|
* - more than balance → error
|
|
11
14
|
*/
|
|
12
|
-
amount
|
|
15
|
+
amount?: number;
|
|
13
16
|
/** Override the fulfillment state after full payment. kaching resolves the cascade. */
|
|
14
17
|
checkoutFulfillmentTarget?: string;
|
|
15
18
|
}
|
|
@@ -3,9 +3,10 @@ export interface VoidOrderParams {
|
|
|
3
3
|
/** Order to void; defaults to the active order. */
|
|
4
4
|
orderId?: string;
|
|
5
5
|
/**
|
|
6
|
-
* Optional cashier-facing reason.
|
|
7
|
-
*
|
|
8
|
-
*
|
|
6
|
+
* Optional cashier-facing reason. Recorded on both branches — the void audit
|
|
7
|
+
* trail on a pure void, and (verbatim) on the persisted refund plus its own
|
|
8
|
+
* audit trail on the refund branch — and always carried on the
|
|
9
|
+
* `order-voided` event either way.
|
|
9
10
|
*/
|
|
10
11
|
reason?: string;
|
|
11
12
|
}
|