@final-commerce/command-frame 0.6.0 → 0.6.1
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/charge-moto/action.d.ts +6 -0
- package/dist/actions/charge-moto/action.js +8 -0
- package/dist/actions/charge-moto/mock.d.ts +2 -0
- package/dist/actions/charge-moto/mock.js +47 -0
- package/dist/actions/charge-moto/types.d.ts +53 -0
- package/dist/actions/charge-moto/types.js +1 -0
- package/dist/actions/create-payment-link/action.d.ts +6 -0
- package/dist/actions/create-payment-link/action.js +8 -0
- package/dist/actions/create-payment-link/mock.d.ts +2 -0
- package/dist/actions/create-payment-link/mock.js +35 -0
- package/dist/actions/create-payment-link/types.d.ts +27 -0
- package/dist/actions/create-payment-link/types.js +12 -0
- package/dist/actions/get-time-clock-status/action.d.ts +6 -0
- package/dist/actions/get-time-clock-status/action.js +8 -0
- package/dist/actions/get-time-clock-status/mock.d.ts +2 -0
- package/dist/actions/get-time-clock-status/mock.js +17 -0
- package/dist/actions/get-time-clock-status/types.d.ts +18 -0
- package/dist/actions/get-time-clock-status/types.js +7 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +8 -0
- package/dist/projects/render/mocks.js +6 -0
- package/dist/projects/render/types.d.ts +4 -1
- package/package.json +2 -2
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { applyMockPayment, MOCK_CART } from '../../demo/database';
|
|
2
|
+
/** Mirrors kaching's `MOTO_MIN_AMOUNT_MINOR` — the processors' floor. */
|
|
3
|
+
const MOTO_MIN_AMOUNT_MINOR = 50;
|
|
4
|
+
/** The card fields that must be present and non-empty on every keyed charge. */
|
|
5
|
+
const REQUIRED_CARD_FIELDS = [
|
|
6
|
+
'encryptedCardNumber',
|
|
7
|
+
'encryptedExpiryMonth',
|
|
8
|
+
'encryptedExpiryYear',
|
|
9
|
+
'encryptedSecurityCode',
|
|
10
|
+
];
|
|
11
|
+
export const mockChargeMoto = async (params) => {
|
|
12
|
+
console.log('[Mock] chargeMoto called', params);
|
|
13
|
+
if (!params)
|
|
14
|
+
throw new Error('Params required');
|
|
15
|
+
if (!Number.isInteger(params.amount)) {
|
|
16
|
+
throw new Error('amount must be an integer number of minor units');
|
|
17
|
+
}
|
|
18
|
+
if (params.amount < MOTO_MIN_AMOUNT_MINOR) {
|
|
19
|
+
throw new Error(`amount must be at least ${MOTO_MIN_AMOUNT_MINOR} minor units`);
|
|
20
|
+
}
|
|
21
|
+
for (const field of REQUIRED_CARD_FIELDS) {
|
|
22
|
+
const value = params.card?.[field];
|
|
23
|
+
if (!value || !value.trim()) {
|
|
24
|
+
throw new Error(`card.${field} is required`);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
if (!params.idempotencyKey || !params.idempotencyKey.trim()) {
|
|
28
|
+
throw new Error('idempotencyKey is required so a retry replays instead of recharging');
|
|
29
|
+
}
|
|
30
|
+
const balanceDue = MOCK_CART.amountToBeCharged ?? MOCK_CART.total;
|
|
31
|
+
if (params.amount > balanceDue) {
|
|
32
|
+
throw new Error(`amount ${params.amount} exceeds balance due ${balanceDue}`);
|
|
33
|
+
}
|
|
34
|
+
// The mock always completes the sale in one leg — it does not model
|
|
35
|
+
// kaching's real partial-leg (`saleFinalized: false`) path.
|
|
36
|
+
const order = applyMockPayment(balanceDue, 'card', 'adyen');
|
|
37
|
+
if (!order) {
|
|
38
|
+
throw new Error('MOCK_CHARGE_MOTO_PARTIAL_UNSUPPORTED: the mock only supports charging the full balance due');
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
success: true,
|
|
42
|
+
timestamp: new Date().toISOString(),
|
|
43
|
+
order,
|
|
44
|
+
saleFinalized: true,
|
|
45
|
+
remainingBalance: 0,
|
|
46
|
+
};
|
|
47
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { CFOrder } from '../../CommonTypes';
|
|
2
|
+
/**
|
|
3
|
+
* Provider-encrypted card fields, opaque to this library — mirrors kaching's
|
|
4
|
+
* `MotoCardFields` field for field. Never a raw PAN: these are the CSE blobs
|
|
5
|
+
* the provider's own client-side encrypter produces.
|
|
6
|
+
*/
|
|
7
|
+
export interface ChargeMotoCardFields {
|
|
8
|
+
encryptedCardNumber: string;
|
|
9
|
+
encryptedExpiryMonth: string;
|
|
10
|
+
encryptedExpiryYear: string;
|
|
11
|
+
encryptedSecurityCode: string;
|
|
12
|
+
/** Optional AVS postal code the operator entered. */
|
|
13
|
+
postalCode?: string;
|
|
14
|
+
/** Provider-side `reference` for this payment. Defaults to the idempotency key server-side. */
|
|
15
|
+
reference?: string;
|
|
16
|
+
}
|
|
17
|
+
export interface ChargeMotoParams {
|
|
18
|
+
/**
|
|
19
|
+
* Total to charge, base + tip, in integer MINOR currency units. Minimum 50
|
|
20
|
+
* minor units (the processors' floor). This is the leg amount: a value
|
|
21
|
+
* below the cart's balance due records a partial payment.
|
|
22
|
+
*/
|
|
23
|
+
amount: number;
|
|
24
|
+
/** Tip portion of `amount`, already collected by the caller's own UI. Defaults to 0. */
|
|
25
|
+
tipAmount?: number;
|
|
26
|
+
/**
|
|
27
|
+
* ISO 4217 code. Optional — the active company's currency is authoritative.
|
|
28
|
+
* When supplied it must match, or the charge is rejected before anything is sent.
|
|
29
|
+
*/
|
|
30
|
+
currency?: string;
|
|
31
|
+
card: ChargeMotoCardFields;
|
|
32
|
+
/**
|
|
33
|
+
* Idempotency key for this charge, HELD BY THE CALLER across retries. A
|
|
34
|
+
* retried charge must carry the SAME key so the charge is replayed instead
|
|
35
|
+
* of doubled; use a NEW key after changing the amount.
|
|
36
|
+
*/
|
|
37
|
+
idempotencyKey: string;
|
|
38
|
+
/** Optional tender label recorded on the payment method. */
|
|
39
|
+
paymentName?: string;
|
|
40
|
+
/** Fulfillment state to land on after full payment (default: auto-fulfill). */
|
|
41
|
+
targetFulfillmentState?: string;
|
|
42
|
+
}
|
|
43
|
+
export interface ChargeMotoResponse {
|
|
44
|
+
success: boolean;
|
|
45
|
+
timestamp: string;
|
|
46
|
+
/** The persisted order the charge landed on. */
|
|
47
|
+
order: CFOrder;
|
|
48
|
+
/** True only when this charge completed the sale (`paymentState === 'paid'`). */
|
|
49
|
+
saleFinalized: boolean;
|
|
50
|
+
/** Balance still due after this charge, in integer minor units. 0 when finalized. */
|
|
51
|
+
remainingBalance: number;
|
|
52
|
+
}
|
|
53
|
+
export type ChargeMoto = (params: ChargeMotoParams) => Promise<ChargeMotoResponse>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Create payment link action
|
|
3
|
+
* Calls the createPaymentLink action on the parent window
|
|
4
|
+
*/
|
|
5
|
+
import { commandFrameClient } from '../../client';
|
|
6
|
+
export const createPaymentLink = async (params) => {
|
|
7
|
+
return await commandFrameClient.call('createPaymentLink', params);
|
|
8
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { MOCK_CART, mockPublishEvent, resetMockCart } from '../../demo/database';
|
|
2
|
+
export const mockCreatePaymentLink = async (params) => {
|
|
3
|
+
console.log('[Mock] createPaymentLink called', params);
|
|
4
|
+
if (!params)
|
|
5
|
+
throw new Error('Params required');
|
|
6
|
+
const email = params.email?.trim() ? params.email : undefined;
|
|
7
|
+
const phone = params.phone?.trim() ? params.phone : undefined;
|
|
8
|
+
if (email && phone) {
|
|
9
|
+
throw new Error('exactly one of email or phone delivers a payment link, not both');
|
|
10
|
+
}
|
|
11
|
+
if (!email && !phone) {
|
|
12
|
+
throw new Error('exactly one of email or phone is required to deliver the payment link');
|
|
13
|
+
}
|
|
14
|
+
const hasCart = MOCK_CART.products.length > 0 ||
|
|
15
|
+
(MOCK_CART.customSales?.length ?? 0) > 0 ||
|
|
16
|
+
(MOCK_CART.nonRevenueItems?.length ?? 0) > 0;
|
|
17
|
+
if (!hasCart || MOCK_CART.total <= 0) {
|
|
18
|
+
throw new Error('ring the sale up before creating a payment link: the cart is empty');
|
|
19
|
+
}
|
|
20
|
+
const mockOrderId = 'order_' + Date.now();
|
|
21
|
+
const mockLinkId = 'link_' + Math.random().toString(36).substr(2, 9);
|
|
22
|
+
// Marks the cart consumed, same as a successful send in kaching — the order
|
|
23
|
+
// now owns the line.
|
|
24
|
+
resetMockCart();
|
|
25
|
+
mockPublishEvent('cart', 'cart-created', {});
|
|
26
|
+
return {
|
|
27
|
+
success: true,
|
|
28
|
+
timestamp: new Date().toISOString(),
|
|
29
|
+
orderId: mockOrderId,
|
|
30
|
+
url: `https://mock.finalpos.dev/pay/${mockLinkId}`,
|
|
31
|
+
id: mockLinkId,
|
|
32
|
+
expiresAt: new Date(Date.now() + 24 * 60 * 60 * 1000).toISOString(),
|
|
33
|
+
delivery: email ? { email: 'sent' } : { sms: 'sent' },
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export interface CreatePaymentLinkParams {
|
|
2
|
+
/** Address to email the link to. Exactly one of `email`/`phone` is required. */
|
|
3
|
+
email?: string;
|
|
4
|
+
/** Phone number to text the link to, E.164 (e.g. "+15555550123"). Exactly one of `email`/`phone` is required. */
|
|
5
|
+
phone?: string;
|
|
6
|
+
}
|
|
7
|
+
export interface CreatePaymentLinkResponse {
|
|
8
|
+
success: boolean;
|
|
9
|
+
timestamp: string;
|
|
10
|
+
/** Client `_id` of the order the station created for this link (charges the CURRENT CART). */
|
|
11
|
+
orderId: string;
|
|
12
|
+
/** Hosted payment page to send the shopper. */
|
|
13
|
+
url: string;
|
|
14
|
+
/** The provider's payment-link id. */
|
|
15
|
+
id: string;
|
|
16
|
+
/** When the link stops accepting payment (ISO date string). */
|
|
17
|
+
expiresAt: string;
|
|
18
|
+
/**
|
|
19
|
+
* Per-channel delivery outcome. OPTIONAL: an older hub omits it entirely,
|
|
20
|
+
* which reads as "delivered" — treat absence as success, not as a failure.
|
|
21
|
+
*/
|
|
22
|
+
delivery?: {
|
|
23
|
+
email?: 'sent' | 'failed';
|
|
24
|
+
sms?: 'sent' | 'failed';
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
export type CreatePaymentLink = (params: CreatePaymentLinkParams) => Promise<CreatePaymentLinkResponse>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// Create Payment Link Types
|
|
2
|
+
//
|
|
3
|
+
// Creates a hosted payment link FOR THE CURRENT CART (station-v2 D-decisions,
|
|
4
|
+
// payment-link addendum). Mirrors kaching's `createPaymentLinkFromCart` input
|
|
5
|
+
// (`CreatePaymentLinkFromCartInput`) and result (`PaymentLinkFromCartResult`,
|
|
6
|
+
// which extends the provider's `PaymentLinkResponse` with the local `orderId`).
|
|
7
|
+
//
|
|
8
|
+
// The station creates the order (client `_id`, `unpaid × in_progress`) BEFORE
|
|
9
|
+
// the link is requested — only that id travels on the wire. On success the
|
|
10
|
+
// cart is cleared; on a failed send the order is voided and the cart is kept
|
|
11
|
+
// so the cashier can retry. Adyen-only today.
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Get time clock status action
|
|
3
|
+
* Calls the getTimeClockStatus action on the parent window
|
|
4
|
+
*/
|
|
5
|
+
import { commandFrameClient } from '../../client';
|
|
6
|
+
export const getTimeClockStatus = async (params) => {
|
|
7
|
+
return await commandFrameClient.call('getTimeClockStatus', params);
|
|
8
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/** Fixed shift start used by the mock — a clocked-in snapshot with no break taken. */
|
|
2
|
+
const MOCK_CLOCK_IN_TIME = new Date(Date.now() - 2 * 60 * 60 * 1000).toISOString();
|
|
3
|
+
export const mockGetTimeClockStatus = async (params) => {
|
|
4
|
+
console.log('[Mock] getTimeClockStatus called', params);
|
|
5
|
+
const workedMs = Date.now() - new Date(MOCK_CLOCK_IN_TIME).getTime();
|
|
6
|
+
return {
|
|
7
|
+
success: true,
|
|
8
|
+
timestamp: new Date().toISOString(),
|
|
9
|
+
status: 'clocked-in',
|
|
10
|
+
entry: {
|
|
11
|
+
clockInTime: MOCK_CLOCK_IN_TIME,
|
|
12
|
+
breakStartedAt: null,
|
|
13
|
+
totalBreakMinutes: 0,
|
|
14
|
+
workedMs,
|
|
15
|
+
},
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface TimeClockEntry {
|
|
2
|
+
/** ISO date string of when the current shift started. */
|
|
3
|
+
clockInTime: string;
|
|
4
|
+
/** ISO date string of when the current break started, or `null` when not on break. */
|
|
5
|
+
breakStartedAt: string | null;
|
|
6
|
+
/** Total break time accumulated on this shift so far, in minutes. */
|
|
7
|
+
totalBreakMinutes: number;
|
|
8
|
+
/** Milliseconds worked so far on this shift, as of when this response was generated. */
|
|
9
|
+
workedMs: number;
|
|
10
|
+
}
|
|
11
|
+
export interface GetTimeClockStatusResponse {
|
|
12
|
+
success: boolean;
|
|
13
|
+
timestamp: string;
|
|
14
|
+
status: 'out' | 'clocked-in' | 'on-break';
|
|
15
|
+
/** `null` when `status` is `'out'`. */
|
|
16
|
+
entry: TimeClockEntry | null;
|
|
17
|
+
}
|
|
18
|
+
export type GetTimeClockStatus = (params?: Record<string, never>) => Promise<GetTimeClockStatusResponse>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// Get Time Clock Status Types
|
|
2
|
+
//
|
|
3
|
+
// READ-ONLY query: is the active employee clocked out, clocked in, or on
|
|
4
|
+
// break, and since when? There are no clock-in/clock-out commands — this
|
|
5
|
+
// action only reports the current state; `workedMs` is a snapshot at call
|
|
6
|
+
// time and flows are expected to tick it client-side from `clockInTime`.
|
|
7
|
+
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -41,6 +41,8 @@ export declare const command: {
|
|
|
41
41
|
readonly extensionPayment: import(".").ExtensionPayment;
|
|
42
42
|
readonly redeemPayment: import(".").RedeemPayment;
|
|
43
43
|
readonly integrationPayment: import(".").IntegrationPayment;
|
|
44
|
+
readonly createPaymentLink: import(".").CreatePaymentLink;
|
|
45
|
+
readonly chargeMoto: import(".").ChargeMoto;
|
|
44
46
|
readonly addCustomerNote: import(".").AddCustomerNote;
|
|
45
47
|
readonly removeCustomerNote: import(".").RemoveCustomerNote;
|
|
46
48
|
readonly removeCustomerFromCart: import(".").RemoveCustomerFromCart;
|
|
@@ -109,6 +111,7 @@ export declare const command: {
|
|
|
109
111
|
readonly uploadMedia: import(".").UploadMedia;
|
|
110
112
|
readonly getTaxTables: import(".").GetTaxTables;
|
|
111
113
|
readonly getBranding: import(".").GetBranding;
|
|
114
|
+
readonly getTimeClockStatus: import(".").GetTimeClockStatus;
|
|
112
115
|
readonly canTransition: import(".").CanTransition;
|
|
113
116
|
readonly getAvailableTransitions: import(".").GetAvailableTransitions;
|
|
114
117
|
readonly applyTransition: import(".").ApplyTransition;
|
|
@@ -173,6 +176,8 @@ export type { TerminalPayment, TerminalPaymentParams, TerminalPaymentResponse }
|
|
|
173
176
|
export type { ExtensionPayment, ExtensionPaymentParams, ExtensionPaymentResponse, } from './actions/extension-payment/types';
|
|
174
177
|
export type { RedeemPayment, RedeemPaymentParams, RedeemPaymentResponse } from './actions/redeem-payment/types';
|
|
175
178
|
export type { IntegrationPayment, IntegrationPaymentParams, IntegrationPaymentResponse, IntegrationEmvData, } from './actions/integration-payment/types';
|
|
179
|
+
export type { CreatePaymentLink, CreatePaymentLinkParams, CreatePaymentLinkResponse, } from './actions/create-payment-link/types';
|
|
180
|
+
export type { ChargeMoto, ChargeMotoParams, ChargeMotoResponse, ChargeMotoCardFields, } from './actions/charge-moto/types';
|
|
176
181
|
export type { AddCustomerNote, AddCustomerNoteParams, AddCustomerNoteResponse, } from './actions/add-customer-note/types';
|
|
177
182
|
export type { RemoveCustomerNote, RemoveCustomerNoteParams, RemoveCustomerNoteResponse, } from './actions/remove-customer-note/types';
|
|
178
183
|
export type { RemoveCustomerFromCart, RemoveCustomerFromCartResponse } from './actions/remove-customer-from-cart/types';
|
|
@@ -186,6 +191,7 @@ export type { GetMedia, GetMediaParams, GetMediaResponse, MediaItemPayload } fro
|
|
|
186
191
|
export type { UploadMedia, UploadMediaParams, UploadMediaResponse } from './actions/upload-media/types';
|
|
187
192
|
export type { GetTaxTables, GetTaxTablesResponse, TaxRatePayload, TaxTablePayload, } from './actions/get-tax-tables/types';
|
|
188
193
|
export type { BorderRadiusPreset, GetBranding, GetBrandingResponse } from './actions/get-branding/types';
|
|
194
|
+
export type { GetTimeClockStatus, GetTimeClockStatusResponse, TimeClockEntry, } from './actions/get-time-clock-status/types';
|
|
189
195
|
export type { ShowConfirmation, ShowConfirmationParams, ShowConfirmationResponse, } from './actions/show-confirmation/types';
|
|
190
196
|
export type { AuthenticateUser, AuthenticateUserParams, AuthenticateUserResponse, } from './actions/authenticate-user/types';
|
|
191
197
|
export type { PartialPayment, PartialPaymentParams, PartialPaymentResponse } from './actions/partial-payment/types';
|
package/dist/index.js
CHANGED
|
@@ -41,6 +41,8 @@ import { terminalPayment } from './actions/terminal-payment/action';
|
|
|
41
41
|
import { extensionPayment } from './actions/extension-payment/action';
|
|
42
42
|
import { redeemPayment } from './actions/redeem-payment/action';
|
|
43
43
|
import { integrationPayment } from './actions/integration-payment/action';
|
|
44
|
+
import { createPaymentLink } from './actions/create-payment-link/action';
|
|
45
|
+
import { chargeMoto } from './actions/charge-moto/action';
|
|
44
46
|
// Customer Actions
|
|
45
47
|
import { addCustomerNote } from './actions/add-customer-note/action';
|
|
46
48
|
import { removeCustomerNote } from './actions/remove-customer-note/action';
|
|
@@ -128,6 +130,8 @@ import { getMedia } from './actions/get-media/action';
|
|
|
128
130
|
import { uploadMedia } from './actions/upload-media/action';
|
|
129
131
|
import { getTaxTables } from './actions/get-tax-tables/action';
|
|
130
132
|
import { getBranding } from './actions/get-branding/action';
|
|
133
|
+
// Time Clock Actions
|
|
134
|
+
import { getTimeClockStatus } from './actions/get-time-clock-status/action';
|
|
131
135
|
// Export actions as command object
|
|
132
136
|
export const command = {
|
|
133
137
|
exampleFunction,
|
|
@@ -174,6 +178,8 @@ export const command = {
|
|
|
174
178
|
extensionPayment,
|
|
175
179
|
redeemPayment,
|
|
176
180
|
integrationPayment,
|
|
181
|
+
createPaymentLink,
|
|
182
|
+
chargeMoto,
|
|
177
183
|
// Customer Actions
|
|
178
184
|
addCustomerNote,
|
|
179
185
|
removeCustomerNote,
|
|
@@ -256,6 +262,8 @@ export const command = {
|
|
|
256
262
|
uploadMedia,
|
|
257
263
|
getTaxTables,
|
|
258
264
|
getBranding,
|
|
265
|
+
// Time Clock Actions
|
|
266
|
+
getTimeClockStatus,
|
|
259
267
|
// State Machine Queries
|
|
260
268
|
canTransition,
|
|
261
269
|
getAvailableTransitions,
|
|
@@ -29,6 +29,9 @@ import { mockAuthenticateUser } from '../../actions/authenticate-user/mock';
|
|
|
29
29
|
import { mockCalculateRefundTotal } from '../../actions/calculate-refund-total/mock';
|
|
30
30
|
import { mockCashPayment } from '../../actions/cash-payment/mock';
|
|
31
31
|
import { mockGetCashRoundingAmount } from '../../actions/get-cash-rounding-amount/mock';
|
|
32
|
+
import { mockCreatePaymentLink } from '../../actions/create-payment-link/mock';
|
|
33
|
+
import { mockChargeMoto } from '../../actions/charge-moto/mock';
|
|
34
|
+
import { mockGetTimeClockStatus } from '../../actions/get-time-clock-status/mock';
|
|
32
35
|
import { mockClearCart } from '../../actions/clear-cart/mock';
|
|
33
36
|
import { mockDeleteParkedOrder } from '../../actions/delete-parked-order/mock';
|
|
34
37
|
import { mockVoidOrder } from '../../actions/void-order/mock';
|
|
@@ -123,6 +126,8 @@ export const RENDER_MOCKS = {
|
|
|
123
126
|
calculateRefundTotal: mockCalculateRefundTotal,
|
|
124
127
|
cashPayment: mockCashPayment,
|
|
125
128
|
getCashRoundingAmount: mockGetCashRoundingAmount,
|
|
129
|
+
createPaymentLink: mockCreatePaymentLink,
|
|
130
|
+
chargeMoto: mockChargeMoto,
|
|
126
131
|
clearCart: mockClearCart,
|
|
127
132
|
deleteParkedOrder: mockDeleteParkedOrder,
|
|
128
133
|
voidOrder: mockVoidOrder,
|
|
@@ -199,4 +204,5 @@ export const RENDER_MOCKS = {
|
|
|
199
204
|
saveSmartGridLayout: mockSaveSmartGridLayout,
|
|
200
205
|
sendEmail: mockSendEmail,
|
|
201
206
|
sendSms: mockSendSms,
|
|
207
|
+
getTimeClockStatus: mockGetTimeClockStatus,
|
|
202
208
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ExampleFunction, GetProducts, AddCustomSale, EditCustomSale, GetCustomers, AssignCustomer, AddCustomer, EditCustomer, GetCategories, GetOrders, GetRefunds, GetTaxTables, AddProductDiscount, AddProductToCart, RemoveProductFromCart, UpdateCartItemQuantity, AddCartDiscount, GetContext, GetFinalContext, AddProductNote, AddProductFee, SetActiveProductFee, SetActiveProductDiscount, GetActiveProduct, SetActiveProduct, AdjustInventory, AddOrderNote, AddCartFee, ClearCart, ParkOrder, ResumeParkedOrder, DeleteParkedOrder, VoidOrder, InitiateRefund, CashPayment, GetCashRoundingAmount, TapToPayPayment, TerminalPayment, ExtensionPayment, RedeemPayment, AddNonRevenueItem, AddCustomerNote, RemoveCustomerNote, RemoveCustomerFromCart, GoToStationHome, OpenCashDrawer, ShowNotification, ShowConfirmation, AuthenticateUser, PartialPayment, SwitchUser, SetRefundStockAction, SelectAllRefundItems, ResetRefundDetails, CalculateRefundTotal, GetRemainingRefundableQuantities, ProcessPartialRefund, RedeemRefund, GetRefundPlan, CheckPermission, GetCurrentCart, Print, SetActiveOrder, GetCustomTables, GetCustomTableData, UpsertCustomTableData, DeleteCustomTableData, GetCustomExtensions, GetCurrentCompanyCustomExtensions, GetCustomExtensionCustomTables, GetCustomTableFields, GetSecretsKeys, GetSecretVal, SetSecretVal, GetUsers, GetRoles, RemoveCartDiscount, GetActiveOrder, GetActiveCustomer, SetActiveCustomer, GetActiveOutlet, GetActiveStation, GetActiveSession, GetActiveUser, SetActiveUser, SetActiveRefund, RemoveProductDiscount, RemoveProductFee, RemoveProductNote, RemoveCartFee, RemoveOrderNote, RemoveCustomSale, RemoveNonRevenueItem, CanTransition, GetAvailableTransitions, ApplyTransition, IntegrationPayment, GetSmartGridLayout, SaveSmartGridLayout, SendEmail, SendSms } from '../../index';
|
|
1
|
+
import type { ExampleFunction, GetProducts, AddCustomSale, EditCustomSale, GetCustomers, AssignCustomer, AddCustomer, EditCustomer, GetCategories, GetOrders, GetRefunds, GetTaxTables, AddProductDiscount, AddProductToCart, RemoveProductFromCart, UpdateCartItemQuantity, AddCartDiscount, GetContext, GetFinalContext, AddProductNote, AddProductFee, SetActiveProductFee, SetActiveProductDiscount, GetActiveProduct, SetActiveProduct, AdjustInventory, AddOrderNote, AddCartFee, ClearCart, ParkOrder, ResumeParkedOrder, DeleteParkedOrder, VoidOrder, InitiateRefund, CashPayment, GetCashRoundingAmount, TapToPayPayment, TerminalPayment, ExtensionPayment, RedeemPayment, AddNonRevenueItem, AddCustomerNote, RemoveCustomerNote, RemoveCustomerFromCart, GoToStationHome, OpenCashDrawer, ShowNotification, ShowConfirmation, AuthenticateUser, PartialPayment, SwitchUser, SetRefundStockAction, SelectAllRefundItems, ResetRefundDetails, CalculateRefundTotal, GetRemainingRefundableQuantities, ProcessPartialRefund, RedeemRefund, GetRefundPlan, CheckPermission, GetCurrentCart, Print, SetActiveOrder, GetCustomTables, GetCustomTableData, UpsertCustomTableData, DeleteCustomTableData, GetCustomExtensions, GetCurrentCompanyCustomExtensions, GetCustomExtensionCustomTables, GetCustomTableFields, GetSecretsKeys, GetSecretVal, SetSecretVal, GetUsers, GetRoles, RemoveCartDiscount, GetActiveOrder, GetActiveCustomer, SetActiveCustomer, GetActiveOutlet, GetActiveStation, GetActiveSession, GetActiveUser, SetActiveUser, SetActiveRefund, RemoveProductDiscount, RemoveProductFee, RemoveProductNote, RemoveCartFee, RemoveOrderNote, RemoveCustomSale, RemoveNonRevenueItem, CanTransition, GetAvailableTransitions, ApplyTransition, IntegrationPayment, GetSmartGridLayout, SaveSmartGridLayout, SendEmail, SendSms, CreatePaymentLink, ChargeMoto, GetTimeClockStatus } from '../../index';
|
|
2
2
|
export interface RenderProviderActions {
|
|
3
3
|
exampleFunction: ExampleFunction;
|
|
4
4
|
getProducts: GetProducts;
|
|
@@ -41,6 +41,8 @@ export interface RenderProviderActions {
|
|
|
41
41
|
extensionPayment: ExtensionPayment;
|
|
42
42
|
redeemPayment: RedeemPayment;
|
|
43
43
|
integrationPayment: IntegrationPayment;
|
|
44
|
+
createPaymentLink: CreatePaymentLink;
|
|
45
|
+
chargeMoto: ChargeMoto;
|
|
44
46
|
addNonRevenueItem: AddNonRevenueItem;
|
|
45
47
|
addCustomerNote: AddCustomerNote;
|
|
46
48
|
removeCustomerNote: RemoveCustomerNote;
|
|
@@ -101,4 +103,5 @@ export interface RenderProviderActions {
|
|
|
101
103
|
saveSmartGridLayout: SaveSmartGridLayout;
|
|
102
104
|
sendEmail: SendEmail;
|
|
103
105
|
sendSms: SendSms;
|
|
106
|
+
getTimeClockStatus: GetTimeClockStatus;
|
|
104
107
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@final-commerce/command-frame",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "Commands Frame library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"ignoreBranchesMissingTickets": true
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@final-commerce/common": "2.2.
|
|
60
|
+
"@final-commerce/common": "2.2.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@commitlint/cli": "^19.0.0",
|