@final-commerce/common 1.1.4-beta.4 → 1.2.4-beta.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.
- package/dist/index.d.mts +617 -4
- package/dist/index.d.ts +617 -4
- package/dist/index.js +50 -18
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +43 -17
- package/dist/index.mjs.map +1 -1
- package/dist/pos-types/index.d.mts +346 -6
- package/dist/pos-types/index.d.ts +346 -6
- package/dist/pos-types/index.js +3 -3
- package/dist/pos-types/index.js.map +1 -1
- package/dist/pos-types/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/interfaces-6GnQyqYd.d.mts +0 -598
- package/dist/interfaces-6GnQyqYd.d.ts +0 -598
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { R as InventorySpecificActionType, H as CustomTableAvailability, v as AttributeType, a0 as OwnerType, X as NonRevenueItemType, C as CurrencyCode, a6 as Platform, aa as ProductStatus, a5 as PaymentTransitionPath, M as FulfillmentTransitionPath, a3 as PathMode, c as CrossAxisRule, T as TransitionConditionSet, S as StatePair, D as DisplayStateRule, u as TransitionBlockedBy, al as StationStatus, aq as UserTypes, o as PaymentState, p as FulfillmentState, ab as ProductType } from '../interfaces-6GnQyqYd.mjs';
|
|
2
|
-
|
|
3
1
|
type Enrich<TBase, TEnrichment> = Omit<TBase, keyof TEnrichment> & TEnrichment;
|
|
4
2
|
|
|
5
3
|
interface BaseDocument {
|
|
@@ -215,6 +213,237 @@ interface RefundDiscount {
|
|
|
215
213
|
itemDiscounts?: RefundItemDiscount[];
|
|
216
214
|
}
|
|
217
215
|
|
|
216
|
+
declare enum CurrencyCode {
|
|
217
|
+
USD = "USD",
|
|
218
|
+
EUR = "EUR",
|
|
219
|
+
GBP = "GBP",
|
|
220
|
+
CAD = "CAD",
|
|
221
|
+
AUD = "AUD",
|
|
222
|
+
NZD = "NZD",
|
|
223
|
+
CHF = "CHF",
|
|
224
|
+
CNY = "CNY",
|
|
225
|
+
INR = "INR",
|
|
226
|
+
MXN = "MXN",
|
|
227
|
+
BRL = "BRL",
|
|
228
|
+
ZAR = "ZAR",
|
|
229
|
+
SGD = "SGD",
|
|
230
|
+
HKD = "HKD",
|
|
231
|
+
SEK = "SEK",
|
|
232
|
+
NOK = "NOK",
|
|
233
|
+
DKK = "DKK",
|
|
234
|
+
PLN = "PLN",
|
|
235
|
+
THB = "THB",
|
|
236
|
+
MYR = "MYR",
|
|
237
|
+
PHP = "PHP",
|
|
238
|
+
IDR = "IDR",
|
|
239
|
+
AED = "AED",
|
|
240
|
+
SAR = "SAR",
|
|
241
|
+
ILS = "ILS",
|
|
242
|
+
TRY = "TRY",
|
|
243
|
+
RUB = "RUB",
|
|
244
|
+
HTG = "HTG",
|
|
245
|
+
BND = "BND",
|
|
246
|
+
CRC = "CRC",
|
|
247
|
+
BDT = "BDT",
|
|
248
|
+
UAH = "UAH",
|
|
249
|
+
NGN = "NGN",
|
|
250
|
+
AFN = "AFN",
|
|
251
|
+
ALL = "ALL",
|
|
252
|
+
AMD = "AMD",
|
|
253
|
+
ANG = "ANG",
|
|
254
|
+
AOA = "AOA",
|
|
255
|
+
ARS = "ARS",
|
|
256
|
+
AWG = "AWG",
|
|
257
|
+
AZN = "AZN",
|
|
258
|
+
BAM = "BAM",
|
|
259
|
+
BBD = "BBD",
|
|
260
|
+
BGN = "BGN",
|
|
261
|
+
BMD = "BMD",
|
|
262
|
+
BOB = "BOB",
|
|
263
|
+
BSD = "BSD",
|
|
264
|
+
BTN = "BTN",
|
|
265
|
+
BWP = "BWP",
|
|
266
|
+
BYN = "BYN",
|
|
267
|
+
BZD = "BZD",
|
|
268
|
+
COP = "COP",
|
|
269
|
+
CZK = "CZK",
|
|
270
|
+
DOP = "DOP",
|
|
271
|
+
DZD = "DZD",
|
|
272
|
+
EGP = "EGP",
|
|
273
|
+
ETB = "ETB",
|
|
274
|
+
FJD = "FJD",
|
|
275
|
+
GEL = "GEL",
|
|
276
|
+
GHS = "GHS",
|
|
277
|
+
GTQ = "GTQ",
|
|
278
|
+
GYD = "GYD",
|
|
279
|
+
HNL = "HNL",
|
|
280
|
+
IRR = "IRR",
|
|
281
|
+
JMD = "JMD",
|
|
282
|
+
KES = "KES",
|
|
283
|
+
KGS = "KGS",
|
|
284
|
+
KHR = "KHR",
|
|
285
|
+
KYD = "KYD",
|
|
286
|
+
KZT = "KZT",
|
|
287
|
+
LAK = "LAK",
|
|
288
|
+
LBP = "LBP",
|
|
289
|
+
LKR = "LKR",
|
|
290
|
+
MAD = "MAD",
|
|
291
|
+
MDL = "MDL",
|
|
292
|
+
MKD = "MKD",
|
|
293
|
+
MMK = "MMK",
|
|
294
|
+
MNT = "MNT",
|
|
295
|
+
MOP = "MOP",
|
|
296
|
+
MUR = "MUR",
|
|
297
|
+
MVR = "MVR",
|
|
298
|
+
MZN = "MZN",
|
|
299
|
+
NAD = "NAD",
|
|
300
|
+
NIO = "NIO",
|
|
301
|
+
NPR = "NPR",
|
|
302
|
+
PAB = "PAB",
|
|
303
|
+
PEN = "PEN",
|
|
304
|
+
PGK = "PGK",
|
|
305
|
+
PKR = "PKR",
|
|
306
|
+
QAR = "QAR",
|
|
307
|
+
RON = "RON",
|
|
308
|
+
RSD = "RSD",
|
|
309
|
+
SBD = "SBD",
|
|
310
|
+
SRD = "SRD",
|
|
311
|
+
SYP = "SYP",
|
|
312
|
+
TJS = "TJS",
|
|
313
|
+
TMT = "TMT",
|
|
314
|
+
TOP = "TOP",
|
|
315
|
+
TTD = "TTD",
|
|
316
|
+
TZS = "TZS",
|
|
317
|
+
UYU = "UYU",
|
|
318
|
+
UZS = "UZS",
|
|
319
|
+
VES = "VES",
|
|
320
|
+
WST = "WST",
|
|
321
|
+
XCD = "XCD",
|
|
322
|
+
YER = "YER",
|
|
323
|
+
ZMW = "ZMW",
|
|
324
|
+
CDF = "CDF",
|
|
325
|
+
CUP = "CUP",
|
|
326
|
+
ERN = "ERN",
|
|
327
|
+
FKP = "FKP",
|
|
328
|
+
GIP = "GIP",
|
|
329
|
+
GMD = "GMD",
|
|
330
|
+
KPW = "KPW",
|
|
331
|
+
LRD = "LRD",
|
|
332
|
+
LSL = "LSL",
|
|
333
|
+
MGA = "MGA",
|
|
334
|
+
MWK = "MWK",
|
|
335
|
+
SCR = "SCR",
|
|
336
|
+
SDG = "SDG",
|
|
337
|
+
SHP = "SHP",
|
|
338
|
+
SLE = "SLE",
|
|
339
|
+
SOS = "SOS",
|
|
340
|
+
SSP = "SSP",
|
|
341
|
+
STN = "STN",
|
|
342
|
+
SZL = "SZL",
|
|
343
|
+
VED = "VED",
|
|
344
|
+
XCG = "XCG",
|
|
345
|
+
JPY = "JPY",
|
|
346
|
+
KRW = "KRW",
|
|
347
|
+
VND = "VND",
|
|
348
|
+
CLP = "CLP",
|
|
349
|
+
ISK = "ISK",
|
|
350
|
+
HUF = "HUF",
|
|
351
|
+
TWD = "TWD",
|
|
352
|
+
GNF = "GNF",
|
|
353
|
+
BIF = "BIF",
|
|
354
|
+
DJF = "DJF",
|
|
355
|
+
KMF = "KMF",
|
|
356
|
+
PYG = "PYG",
|
|
357
|
+
RWF = "RWF",
|
|
358
|
+
UGX = "UGX",
|
|
359
|
+
VUV = "VUV",
|
|
360
|
+
XAF = "XAF",
|
|
361
|
+
XOF = "XOF",
|
|
362
|
+
XPF = "XPF",
|
|
363
|
+
KWD = "KWD",
|
|
364
|
+
BHD = "BHD",
|
|
365
|
+
OMR = "OMR",
|
|
366
|
+
JOD = "JOD",
|
|
367
|
+
TND = "TND",
|
|
368
|
+
LYD = "LYD",
|
|
369
|
+
IQD = "IQD"
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
declare enum CustomTableAvailability {
|
|
373
|
+
PUBLIC = "public",
|
|
374
|
+
ORGANIZATION = "organization"
|
|
375
|
+
}
|
|
376
|
+
declare enum AttributeType {
|
|
377
|
+
STRING = "string",
|
|
378
|
+
NUMBER = "number",
|
|
379
|
+
BOOLEAN = "boolean",
|
|
380
|
+
DATE = "date",
|
|
381
|
+
JSON_STRING = "json-string"
|
|
382
|
+
}
|
|
383
|
+
declare enum Platform {
|
|
384
|
+
WOO_COMMERCE = "woo-commerce",
|
|
385
|
+
SHOPIFY = "shopify",
|
|
386
|
+
OLIVER = "oliver",
|
|
387
|
+
STANDALONE = "standalone"
|
|
388
|
+
}
|
|
389
|
+
declare enum StationStatus {
|
|
390
|
+
IN_USE = "IN_USE",
|
|
391
|
+
AVAILABLE = "AVAILABLE"
|
|
392
|
+
}
|
|
393
|
+
declare enum InventorySpecificActionType {
|
|
394
|
+
STOCK_RECEIVED = "STOCK_RECEIVED",
|
|
395
|
+
INVENTORY_RECOUNT = "INVENTORY_RECOUNT",
|
|
396
|
+
DAMAGE = "DAMAGE",
|
|
397
|
+
THEFT = "THEFT",
|
|
398
|
+
LOSS = "LOSS",
|
|
399
|
+
RESTOCK_RETURN = "RESTOCK_RETURN",
|
|
400
|
+
REFUND_RESTOCK_RETURN = "REFUND_RESTOCK_RETURN",
|
|
401
|
+
REFUND_DAMAGE = "REFUND_DAMAGE",
|
|
402
|
+
SALE = "SALE",
|
|
403
|
+
TRANSFER = "TRANSFER",
|
|
404
|
+
BULK_RECOUNT = "BULK_RECOUNT",
|
|
405
|
+
APPLIED_FROM_WOO = "APPLIED_FROM_WOO",
|
|
406
|
+
PO_RECEIVED = "PO_RECEIVED"
|
|
407
|
+
}
|
|
408
|
+
declare enum UserTypes {
|
|
409
|
+
COMPANY_OWNER = "owner",
|
|
410
|
+
ORG_USER = "organization_user",
|
|
411
|
+
ORG_OWNER = "organization_owner",
|
|
412
|
+
FINAL_USER = "final_user",
|
|
413
|
+
FINAL_OWNER = "final_owner",
|
|
414
|
+
EMPLOYEE = "employee",
|
|
415
|
+
SUPER_ADMIN = "super_admin",
|
|
416
|
+
MANAGER = "manager",
|
|
417
|
+
ADMIN = "admin",
|
|
418
|
+
ASSISTANT_MANAGER = "assistant",
|
|
419
|
+
CASHIER = "cashier",
|
|
420
|
+
RESELLER = "reseller"
|
|
421
|
+
}
|
|
422
|
+
declare enum OwnerType {
|
|
423
|
+
API_KEY = "api-key",
|
|
424
|
+
ORGANIZATION = "organization",
|
|
425
|
+
COMPANY = "company"
|
|
426
|
+
}
|
|
427
|
+
declare enum NonRevenueItemType {
|
|
428
|
+
GIFT_CARD = "gift-card"
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
declare enum ProductType {
|
|
432
|
+
SIMPLE = "simple",
|
|
433
|
+
VARIABLE = "variable"
|
|
434
|
+
}
|
|
435
|
+
declare enum ProductStatus {
|
|
436
|
+
ACTIVE = "active",
|
|
437
|
+
INACTIVE = "inactive",
|
|
438
|
+
DRAFT = "draft"
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
declare enum PaymentProcessor {
|
|
442
|
+
STRIPE = "stripe",
|
|
443
|
+
ADYEN = "adyen",
|
|
444
|
+
EXTERNAL = "external"
|
|
445
|
+
}
|
|
446
|
+
|
|
218
447
|
interface RefundLineItem {
|
|
219
448
|
taxes?: OrderTax[];
|
|
220
449
|
discount?: RefundDiscount;
|
|
@@ -629,6 +858,74 @@ interface Transaction extends BaseEntity {
|
|
|
629
858
|
minorUnits?: number;
|
|
630
859
|
}
|
|
631
860
|
|
|
861
|
+
type PaymentState = 'unpaid' | 'payment_pending' | 'partially_paid' | 'paid' | 'partially_refunded' | 'refunded' | 'voided';
|
|
862
|
+
type FulfillmentState = 'draft' | 'pending' | 'on_hold' | 'in_progress' | 'fulfilled' | 'partially_fulfilled' | 'returned' | 'partially_returned' | 'cancelled';
|
|
863
|
+
interface StatePair {
|
|
864
|
+
payment: PaymentState;
|
|
865
|
+
fulfillment: FulfillmentState;
|
|
866
|
+
}
|
|
867
|
+
type ConditionOperator = 'eq' | 'neq' | 'gt' | 'gte' | 'lt' | 'lte' | 'in' | 'notIn' | 'isEmpty' | 'isNotEmpty';
|
|
868
|
+
type PathMode = 'strict' | 'permissive';
|
|
869
|
+
|
|
870
|
+
interface PaymentTransitionPath {
|
|
871
|
+
from: PaymentState;
|
|
872
|
+
to: PaymentState;
|
|
873
|
+
conditionSetId?: string;
|
|
874
|
+
_sourceExtensionId?: string;
|
|
875
|
+
}
|
|
876
|
+
interface FulfillmentTransitionPath {
|
|
877
|
+
from: FulfillmentState;
|
|
878
|
+
to: FulfillmentState;
|
|
879
|
+
conditionSetId?: string;
|
|
880
|
+
_sourceExtensionId?: string;
|
|
881
|
+
}
|
|
882
|
+
interface Condition {
|
|
883
|
+
field: string;
|
|
884
|
+
operator: ConditionOperator;
|
|
885
|
+
value: unknown;
|
|
886
|
+
}
|
|
887
|
+
interface ConditionGroup {
|
|
888
|
+
conditions: Condition[];
|
|
889
|
+
}
|
|
890
|
+
interface TransitionConditionSet {
|
|
891
|
+
id: string;
|
|
892
|
+
label: string;
|
|
893
|
+
groups: ConditionGroup[];
|
|
894
|
+
_sourceExtensionId?: string;
|
|
895
|
+
}
|
|
896
|
+
type CrossAxisTrigger = {
|
|
897
|
+
axis: 'payment';
|
|
898
|
+
to: PaymentState | PaymentState[];
|
|
899
|
+
} | {
|
|
900
|
+
axis: 'fulfillment';
|
|
901
|
+
to: FulfillmentState | FulfillmentState[];
|
|
902
|
+
};
|
|
903
|
+
type CrossAxisRequires = {
|
|
904
|
+
axis: 'payment';
|
|
905
|
+
states: PaymentState[];
|
|
906
|
+
} | {
|
|
907
|
+
axis: 'fulfillment';
|
|
908
|
+
states: FulfillmentState[];
|
|
909
|
+
};
|
|
910
|
+
interface CrossAxisRule {
|
|
911
|
+
id: string;
|
|
912
|
+
label: string;
|
|
913
|
+
description?: string;
|
|
914
|
+
enabled: boolean;
|
|
915
|
+
trigger: CrossAxisTrigger;
|
|
916
|
+
requires: CrossAxisRequires;
|
|
917
|
+
_sourceExtensionId?: string;
|
|
918
|
+
}
|
|
919
|
+
interface DisplayStateRule {
|
|
920
|
+
paymentState?: PaymentState | PaymentState[];
|
|
921
|
+
fulfillmentState?: FulfillmentState | FulfillmentState[];
|
|
922
|
+
label: string;
|
|
923
|
+
color?: string;
|
|
924
|
+
icon?: string;
|
|
925
|
+
_sourceExtensionId?: string;
|
|
926
|
+
}
|
|
927
|
+
type TransitionBlockedBy = 'financial_invariant' | 'cross_axis_rule' | 'path' | 'condition';
|
|
928
|
+
|
|
632
929
|
interface OrderStateConfig extends BaseEntity {
|
|
633
930
|
version: number;
|
|
634
931
|
name: string;
|
|
@@ -1041,12 +1338,14 @@ interface RefundedTipPayment {
|
|
|
1041
1338
|
tipTo: string;
|
|
1042
1339
|
tendered?: number;
|
|
1043
1340
|
}
|
|
1341
|
+
|
|
1044
1342
|
interface PaymentMethod {
|
|
1045
1343
|
transactionId: string;
|
|
1046
1344
|
paymentType: string;
|
|
1047
1345
|
amount: number;
|
|
1048
1346
|
timestamp: string;
|
|
1049
1347
|
processor: string;
|
|
1348
|
+
provider?: PaymentProcessor;
|
|
1050
1349
|
saleId?: string;
|
|
1051
1350
|
change?: number | null;
|
|
1052
1351
|
tip?: TipPayment | null;
|
|
@@ -1366,6 +1665,8 @@ interface PrinterDetails {
|
|
|
1366
1665
|
ipAddress: string | null;
|
|
1367
1666
|
macAddress: string | null;
|
|
1368
1667
|
isAirPrint: boolean;
|
|
1668
|
+
printerId?: string;
|
|
1669
|
+
brand?: string | null;
|
|
1369
1670
|
}
|
|
1370
1671
|
interface PaymentResponse {
|
|
1371
1672
|
status: PaymentStatus;
|
|
@@ -1680,6 +1981,7 @@ interface ActiveEntityChanges {
|
|
|
1680
1981
|
}
|
|
1681
1982
|
interface Flow {
|
|
1682
1983
|
_id: string;
|
|
1984
|
+
hubId?: string;
|
|
1683
1985
|
companyId: string;
|
|
1684
1986
|
title: string;
|
|
1685
1987
|
description: string;
|
|
@@ -1718,7 +2020,7 @@ interface ReaderCapabilities {
|
|
|
1718
2020
|
tapToPay: boolean;
|
|
1719
2021
|
terminal: boolean;
|
|
1720
2022
|
}
|
|
1721
|
-
type ServiceChannelMessageType = 'POSBRAIN_READY' | 'HOST_HELLO' | 'SERVICE_INIT' | 'BOOTSTRAP' | 'TOKEN_REFRESH' | 'SELECTION' | 'HOST_SHUTDOWN' | 'READER_CAPABILITIES' | 'RUNTIME_READY' | 'SYNC_PROGRESS' | 'DEVICE_OP_REQUEST' | 'DEVICE_OP_RESPONSE';
|
|
2023
|
+
type ServiceChannelMessageType = 'POSBRAIN_READY' | 'HOST_HELLO' | 'SERVICE_INIT' | 'BOOTSTRAP' | 'TOKEN_REFRESH' | 'SELECTION' | 'HOST_SHUTDOWN' | 'READER_CAPABILITIES' | 'RUNTIME_READY' | 'HOST_NAVIGATE' | 'SYNC_PROGRESS' | 'DEVICE_OP_REQUEST' | 'DEVICE_OP_RESPONSE' | 'PUBSUB_TOPICS_REQUEST' | 'PUBSUB_TOPICS_LIST' | 'PUBSUB_SUBSCRIBE' | 'PUBSUB_UNSUBSCRIBE' | 'PUBSUB_EVENT';
|
|
1722
2024
|
interface PosBrainReadyMessage {
|
|
1723
2025
|
type: 'POSBRAIN_READY';
|
|
1724
2026
|
}
|
|
@@ -1757,6 +2059,11 @@ interface ReaderCapabilitiesMessage {
|
|
|
1757
2059
|
interface RuntimeReadyMessage {
|
|
1758
2060
|
type: 'RUNTIME_READY';
|
|
1759
2061
|
}
|
|
2062
|
+
type HostNavigateTarget = 'station-home';
|
|
2063
|
+
interface HostNavigateMessage {
|
|
2064
|
+
type: 'HOST_NAVIGATE';
|
|
2065
|
+
target: HostNavigateTarget;
|
|
2066
|
+
}
|
|
1760
2067
|
interface SyncProgressMessage {
|
|
1761
2068
|
type: 'SYNC_PROGRESS';
|
|
1762
2069
|
total: number;
|
|
@@ -1764,7 +2071,7 @@ interface SyncProgressMessage {
|
|
|
1764
2071
|
pending: string[];
|
|
1765
2072
|
done: boolean;
|
|
1766
2073
|
}
|
|
1767
|
-
type DeviceOpName = 'printImage' | 'printHTML' | 'printReceipt' | 'openCashDrawer' | 'captureCardPresent';
|
|
2074
|
+
type DeviceOpName = 'printImage' | 'printHTML' | 'printReceipt' | 'openCashDrawer' | 'captureCardPresent' | 'cancelCardPresent' | 'refundCardPresent';
|
|
1768
2075
|
interface DeviceOpRequestMessage {
|
|
1769
2076
|
type: 'DEVICE_OP_REQUEST';
|
|
1770
2077
|
id: string;
|
|
@@ -1776,7 +2083,40 @@ interface DeviceOpResponseMessage {
|
|
|
1776
2083
|
id: string;
|
|
1777
2084
|
ok: boolean;
|
|
1778
2085
|
error?: string;
|
|
2086
|
+
data?: PaymentResponse;
|
|
2087
|
+
}
|
|
2088
|
+
interface TopicDefinitionWire {
|
|
2089
|
+
id: string;
|
|
2090
|
+
name: string;
|
|
2091
|
+
description?: string;
|
|
2092
|
+
eventTypes: {
|
|
2093
|
+
id: string;
|
|
2094
|
+
description?: string;
|
|
2095
|
+
}[];
|
|
2096
|
+
}
|
|
2097
|
+
interface TopicEventWire {
|
|
2098
|
+
topic: string;
|
|
2099
|
+
type: string;
|
|
2100
|
+
data: unknown;
|
|
2101
|
+
timestamp: string;
|
|
2102
|
+
}
|
|
2103
|
+
interface PubsubTopicsRequestMessage {
|
|
2104
|
+
type: 'PUBSUB_TOPICS_REQUEST';
|
|
2105
|
+
id: string;
|
|
2106
|
+
}
|
|
2107
|
+
interface PubsubTopicsListMessage {
|
|
2108
|
+
type: 'PUBSUB_TOPICS_LIST';
|
|
2109
|
+
id: string;
|
|
2110
|
+
topics: TopicDefinitionWire[];
|
|
2111
|
+
}
|
|
2112
|
+
interface PubsubSubscribeMessage {
|
|
2113
|
+
type: 'PUBSUB_SUBSCRIBE' | 'PUBSUB_UNSUBSCRIBE';
|
|
2114
|
+
topic: string;
|
|
2115
|
+
}
|
|
2116
|
+
interface PubsubEventMessage {
|
|
2117
|
+
type: 'PUBSUB_EVENT';
|
|
2118
|
+
event: TopicEventWire;
|
|
1779
2119
|
}
|
|
1780
|
-
type ServiceChannelMessage = PosBrainReadyMessage | HostHelloMessage | ServiceInitMessage | BootstrapMessage | TokenRefreshMessage | SelectionMessage | HostShutdownMessage | ReaderCapabilitiesMessage | RuntimeReadyMessage | SyncProgressMessage | DeviceOpRequestMessage | DeviceOpResponseMessage;
|
|
2120
|
+
type ServiceChannelMessage = PosBrainReadyMessage | HostHelloMessage | ServiceInitMessage | BootstrapMessage | TokenRefreshMessage | SelectionMessage | HostShutdownMessage | ReaderCapabilitiesMessage | RuntimeReadyMessage | HostNavigateMessage | SyncProgressMessage | DeviceOpRequestMessage | DeviceOpResponseMessage | PubsubTopicsRequestMessage | PubsubTopicsListMessage | PubsubSubscribeMessage | PubsubEventMessage;
|
|
1781
2121
|
|
|
1782
|
-
export { type ActiveCart, type ActiveCartProduct, type ActiveCompany, type ActiveCustomSales, type ActiveCustomer, type ActiveEntityChanges, ActiveEntityType, type ActiveFullProduct, type ActiveOrder, type ActiveOutlet, type ActivePark, type ActiveProduct, type ActiveRefundOrder, type ActiveSession, type ActiveSplitPayment, type ActiveStation, type ActiveTaxDetails, type ActiveTimer, type ActiveUpdatedOrder, type ActiveUser, type ActiveUserRole, type Address, type Attribute, type AttributeEmbedded, type AttributeOption, type BaseDocument, type BaseEntity, type BaseTile, type BootstrapMessage, type CalculatedTaxDetails, type CartDiscountItem, type CartFeeItem, type CartFeeTaxEntry, type CartFeesDetails, type CashPaymentSettings, type CashRoundingIncrement, type Category, type CompanyExtension, type CompanySettingsEavValue, type CompanySettingsEavValueType, type CustomExtension, type CustomFee, type CustomSale, type CustomSaleDetails, type CustomTable, type CustomTableField, type CustomTableMetadata, type CustomTableRow, type CustomTableValue, type Customer, type CustomerNote, type DeviceEnvAttribute, type DeviceEnvCategory, type DeviceEnvValue, type DeviceOpName, type DeviceOpRequestMessage, type DeviceOpResponseMessage, type Discount, type DiscountDetail, type DiscountLineItem, type Enrich, EnvironmentDataKeys, EnvironmentDataSubKeys, type FeeDetail, type FeeLineItem, type Flow, type FlowSettings, type FlowSettingsKey, type FlowWebApp, type FlowWebAppVersion, type FullProduct, type HostHelloMessage, type HostShutdownMessage, type Inventory, type LineItem, type Metadata, type MetadataItem, type NonRevenueItem, type Note, type Order, type OrderCartDiscount, type OrderCartFee, type OrderCustomSale, type OrderCustomSaleDiscount, type OrderCustomSaleFee, type OrderLineItem, type OrderLineItemDiscount, type OrderLineItemFee, type OrderNote, type OrderPaymentMethod, type OrderPosData, type OrderRefund, type OrderRefundSummary, type OrderStateActor, type OrderStateActorType, type OrderStateConfig, type OrderStateEvent, type OrderStateEventTrigger, type OrderStateHistoryEntry, type OrderStateOperation, type OrderStatePair, type OrderSummary, type OrderSummaryPayments, type OrderTax, type OrderTip, type Outlet, type PaymentMethod, type PaymentResponse, type PaymentSetting, PaymentStatus, type PosBrainReadyMessage, type PosDataItem, type PriceModifierDetail, type PrinterDetails, ProcessorType, type ProdDiscountBreakdown, type ProdFeeBreakdown, type Product, type ProductTaxDetails, type ProductVariant, type Reader, type ReaderCapabilities, type ReaderCapabilitiesMessage, type Refund, type RefundCartDiscount, type RefundDiscount, type RefundItem, type RefundItemDiscount, type RefundLineItem, type RefundPayment, type RefundProcessingStatus, type RefundSummary, type RefundTip, type RefundedCustomSale, type RefundedLineItem, type RefundedTipPayment, type Role, type RolePermission, type RuntimeReadyMessage, type SelectionContext, type SelectionFlowContext, type SelectionMessage, type SelectionRoleContext, type ServiceChannelMessage, type ServiceChannelMessageType, type ServiceInitMessage, type Session, type SessionClosingAmounts, type SmartGridSetting, type SmartGridSettings, type SmartGridSettingsData, type Station, type StripeAccount, type Summary, type SummaryPayments, type SyncProgressMessage, type Tax, type TaxRate, type TaxRateValue, type TaxTable, type TaxTableActive, type TaxTableRate, type TileGrid, type Tip, type TipData, type TipPayment, type TipsDetails, type TokenRefreshMessage, type Transaction, type TransactionPaymentData, type User, type UserType, type Variant, type VariantInventory };
|
|
2122
|
+
export { type ActiveCart, type ActiveCartProduct, type ActiveCompany, type ActiveCustomSales, type ActiveCustomer, type ActiveEntityChanges, ActiveEntityType, type ActiveFullProduct, type ActiveOrder, type ActiveOutlet, type ActivePark, type ActiveProduct, type ActiveRefundOrder, type ActiveSession, type ActiveSplitPayment, type ActiveStation, type ActiveTaxDetails, type ActiveTimer, type ActiveUpdatedOrder, type ActiveUser, type ActiveUserRole, type Address, type Attribute, type AttributeEmbedded, type AttributeOption, type BaseDocument, type BaseEntity, type BaseTile, type BootstrapMessage, type CalculatedTaxDetails, type CartDiscountItem, type CartFeeItem, type CartFeeTaxEntry, type CartFeesDetails, type CashPaymentSettings, type CashRoundingIncrement, type Category, type CompanyExtension, type CompanySettingsEavValue, type CompanySettingsEavValueType, type CustomExtension, type CustomFee, type CustomSale, type CustomSaleDetails, type CustomTable, type CustomTableField, type CustomTableMetadata, type CustomTableRow, type CustomTableValue, type Customer, type CustomerNote, type DeviceEnvAttribute, type DeviceEnvCategory, type DeviceEnvValue, type DeviceOpName, type DeviceOpRequestMessage, type DeviceOpResponseMessage, type Discount, type DiscountDetail, type DiscountLineItem, type Enrich, EnvironmentDataKeys, EnvironmentDataSubKeys, type FeeDetail, type FeeLineItem, type Flow, type FlowSettings, type FlowSettingsKey, type FlowWebApp, type FlowWebAppVersion, type FullProduct, type HostHelloMessage, type HostNavigateMessage, type HostNavigateTarget, type HostShutdownMessage, type Inventory, type LineItem, type Metadata, type MetadataItem, type NonRevenueItem, type Note, type Order, type OrderCartDiscount, type OrderCartFee, type OrderCustomSale, type OrderCustomSaleDiscount, type OrderCustomSaleFee, type OrderLineItem, type OrderLineItemDiscount, type OrderLineItemFee, type OrderNote, type OrderPaymentMethod, type OrderPosData, type OrderRefund, type OrderRefundSummary, type OrderStateActor, type OrderStateActorType, type OrderStateConfig, type OrderStateEvent, type OrderStateEventTrigger, type OrderStateHistoryEntry, type OrderStateOperation, type OrderStatePair, type OrderSummary, type OrderSummaryPayments, type OrderTax, type OrderTip, type Outlet, type PaymentMethod, type PaymentResponse, type PaymentSetting, PaymentStatus, type PosBrainReadyMessage, type PosDataItem, type PriceModifierDetail, type PrinterDetails, ProcessorType, type ProdDiscountBreakdown, type ProdFeeBreakdown, type Product, type ProductTaxDetails, type ProductVariant, type PubsubEventMessage, type PubsubSubscribeMessage, type PubsubTopicsListMessage, type PubsubTopicsRequestMessage, type Reader, type ReaderCapabilities, type ReaderCapabilitiesMessage, type Refund, type RefundCartDiscount, type RefundDiscount, type RefundItem, type RefundItemDiscount, type RefundLineItem, type RefundPayment, type RefundProcessingStatus, type RefundSummary, type RefundTip, type RefundedCustomSale, type RefundedLineItem, type RefundedTipPayment, type Role, type RolePermission, type RuntimeReadyMessage, type SelectionContext, type SelectionFlowContext, type SelectionMessage, type SelectionRoleContext, type ServiceChannelMessage, type ServiceChannelMessageType, type ServiceInitMessage, type Session, type SessionClosingAmounts, type SmartGridSetting, type SmartGridSettings, type SmartGridSettingsData, type Station, type StripeAccount, type Summary, type SummaryPayments, type SyncProgressMessage, type Tax, type TaxRate, type TaxRateValue, type TaxTable, type TaxTableActive, type TaxTableRate, type TileGrid, type Tip, type TipData, type TipPayment, type TipsDetails, type TokenRefreshMessage, type TopicDefinitionWire, type TopicEventWire, type Transaction, type TransactionPaymentData, type User, type UserType, type Variant, type VariantInventory };
|