Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | 12x 12x 12x 1x 12x 4x | import {
marshallItem,
unmarshallItem,
Schema,
} from '@aws/dynamodb-data-marshaller';
import { AttributeMap } from 'aws-sdk/clients/dynamodb';
const deviceSettingsTableSchema: Schema = {
id: { type: 'String' },
name: { type: 'String' },
entityUuid: { type: 'String' },
site: {
type: 'Document',
members: {
siteUuid: { type: 'String' },
name: { type: 'String' },
pin: { type: 'String' },
refundRequiresPin: { type: 'Boolean' },
},
},
surchargesTaxes: {
type: 'Document',
members: {
surchargeEnabled: { type: 'Boolean' },
surchargePercent: { type: 'Number' },
feePercent: { type: 'Number' },
gstEnabled: { type: 'Boolean' },
gstPercent: { type: 'Number' },
taxes: {
type: 'List',
memberType: {
type: 'Document',
members: { name: { type: 'String' }, percent: { type: 'Number' } },
},
},
},
},
tipping: {
type: 'Document',
members: {
enabled: { type: 'Boolean' },
tipPercent1: { type: 'Number' },
tipPercent2: { type: 'Number' },
tipPercent3: { type: 'Number' },
customTipAllowed: { type: 'Boolean' },
},
},
schemes: {
type: 'List',
memberType: {
type: 'Document',
members: { name: { type: 'String' } },
},
},
receipt: {
type: 'Document',
members: {
merchantCopy: { type: 'Boolean' },
name: { type: 'String' },
address1: { type: 'String' },
address2: { type: 'String' },
number: { type: 'String' },
phone: { type: 'String' },
email: { type: 'String' },
message: { type: 'String' },
website: { type: 'String' },
instagram: { type: 'String' },
facebook: { type: 'String' },
twitter: { type: 'String' },
logo: { type: 'String' },
},
},
customers: {
type: 'List',
memberType: {
type: 'Document',
members: {
customerUuid: { type: 'String' },
firstname: { type: 'String' },
lastname: { type: 'String' },
phone: { type: 'String' },
email: { type: 'String' },
role: { type: 'String' },
sites: {
type: 'List',
memberType: {
type: 'Document',
members: {
id: { type: 'String' },
name: { type: 'String' },
address: { type: 'String' },
state: { type: 'String' },
},
},
},
},
},
},
network: {
type: 'Document',
members: {
wifiEnabled: { type: 'Boolean' },
wifiSsid: { type: 'String' },
cellularEnabled: { type: 'Boolean' },
cellularNetwork: { type: 'String' },
},
},
screen: {
type: 'Document',
members: {
sleepEnabled: { type: 'Boolean' },
sleepTimer: { type: 'Number' },
standbyEnabled: { type: 'Boolean' },
standbyTimer: { type: 'Number' },
brightness: { type: 'Number' },
},
},
terminalConfig: { type: 'String' },
emvConfig: { type: 'String' },
emvTables: { type: 'String' },
emvCaKeys: { type: 'String' },
}
export const marshallDeviceSettings = (data: {
[key: string]: any;
}): AttributeMap => marshallItem(deviceSettingsTableSchema, data);
export const unmarshallDeviceSettings = (
data: AttributeMap,
): { [key: string]: any } => unmarshallItem(deviceSettingsTableSchema, data);
|