@pmcretail/mapper-library 0.0.1 → 0.0.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/README.md +2 -2
- package/bundles/pmcretail-mapper-library.umd.js +6133 -0
- package/bundles/pmcretail-mapper-library.umd.js.map +1 -0
- package/bundles/pmcretail-mapper-library.umd.min.js +16 -0
- package/bundles/pmcretail-mapper-library.umd.min.js.map +1 -0
- package/esm2015/lib/RJ-mapper.class.js +1061 -0
- package/esm2015/lib/TransactionDocumentBuilder.js +1535 -0
- package/esm2015/lib/basket.service.js +851 -0
- package/esm2015/lib/mapper-library.component.js +27 -0
- package/esm2015/lib/mapper-library.model.js +974 -0
- package/esm2015/lib/mapper-library.module.js +21 -0
- package/esm2015/lib/number-util.service.js +77 -0
- package/esm2015/pmcretail-mapper-library.js +10 -0
- package/esm2015/public-api.js +12 -0
- package/esm5/lib/RJ-mapper.class.js +1262 -0
- package/esm5/lib/TransactionDocumentBuilder.js +2469 -0
- package/esm5/lib/basket.service.js +1076 -0
- package/esm5/lib/mapper-library.component.js +29 -0
- package/esm5/lib/mapper-library.model.js +974 -0
- package/esm5/lib/mapper-library.module.js +25 -0
- package/esm5/lib/number-util.service.js +94 -0
- package/esm5/pmcretail-mapper-library.js +10 -0
- package/esm5/public-api.js +12 -0
- package/{fesm2020/pmcretail-mapper-library.mjs → fesm2015/pmcretail-mapper-library.js} +2627 -602
- package/fesm2015/pmcretail-mapper-library.js.map +1 -0
- package/fesm5/pmcretail-mapper-library.js +5919 -0
- package/fesm5/pmcretail-mapper-library.js.map +1 -0
- package/lib/TransactionDocumentBuilder.d.ts +1 -1
- package/lib/basket.service.d.ts +1 -5
- package/lib/mapper-library.component.d.ts +0 -3
- package/lib/mapper-library.module.d.ts +0 -5
- package/lib/number-util.service.d.ts +2 -4
- package/package.json +16 -26
- package/pmcretail-mapper-library.d.ts +1 -1
- package/pmcretail-mapper-library.metadata.json +1 -0
- package/public-api.d.ts +0 -1
- package/esm2020/lib/RJ-mapper.class.mjs +0 -597
- package/esm2020/lib/TransactionDocumentBuilder.mjs +0 -1240
- package/esm2020/lib/basket.service.mjs +0 -527
- package/esm2020/lib/mapper-library.component.mjs +0 -26
- package/esm2020/lib/mapper-library.model.mjs +0 -20
- package/esm2020/lib/mapper-library.module.mjs +0 -21
- package/esm2020/lib/mapper-library.service.mjs +0 -56
- package/esm2020/lib/number-util.service.mjs +0 -41
- package/esm2020/pmcretail-mapper-library.mjs +0 -5
- package/esm2020/public-api.mjs +0 -8
- package/fesm2015/pmcretail-mapper-library.mjs +0 -2526
- package/fesm2015/pmcretail-mapper-library.mjs.map +0 -1
- package/fesm2020/pmcretail-mapper-library.mjs.map +0 -1
- package/lib/mapper-library.service.d.ts +0 -9
|
@@ -0,0 +1,974 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview added by tsickle
|
|
3
|
+
* Generated from: lib/mapper-library.model.ts
|
|
4
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
+
*/
|
|
6
|
+
/** @enum {string} */
|
|
7
|
+
const TRANSACTION_TYPE = {
|
|
8
|
+
SALE: "SALE",
|
|
9
|
+
REFUND: "REFUND",
|
|
10
|
+
SALE_REFUND: "SALE_REFUND",
|
|
11
|
+
SALE_EXCHANGE: "SALE_EXCHANGE",
|
|
12
|
+
VOID: "VOID",
|
|
13
|
+
};
|
|
14
|
+
export { TRANSACTION_TYPE };
|
|
15
|
+
/**
|
|
16
|
+
* @record
|
|
17
|
+
*/
|
|
18
|
+
export function ItemDiscount() { }
|
|
19
|
+
if (false) {
|
|
20
|
+
/** @type {?} */
|
|
21
|
+
ItemDiscount.prototype.trnDiscountsPortion;
|
|
22
|
+
/** @type {?} */
|
|
23
|
+
ItemDiscount.prototype.trnPromotionsPortion;
|
|
24
|
+
/** @type {?} */
|
|
25
|
+
ItemDiscount.prototype.refundPortion;
|
|
26
|
+
/** @type {?|undefined} */
|
|
27
|
+
ItemDiscount.prototype.currentRefundPortion;
|
|
28
|
+
}
|
|
29
|
+
/** @enum {number} */
|
|
30
|
+
const DELIVERY_METHODS = {
|
|
31
|
+
DELIVERY: 1,
|
|
32
|
+
DROP_SHIP: 2,
|
|
33
|
+
COLLECT_FROM_STORE: 3,
|
|
34
|
+
};
|
|
35
|
+
export { DELIVERY_METHODS };
|
|
36
|
+
DELIVERY_METHODS[DELIVERY_METHODS.DELIVERY] = 'DELIVERY';
|
|
37
|
+
DELIVERY_METHODS[DELIVERY_METHODS.DROP_SHIP] = 'DROP_SHIP';
|
|
38
|
+
DELIVERY_METHODS[DELIVERY_METHODS.COLLECT_FROM_STORE] = 'COLLECT_FROM_STORE';
|
|
39
|
+
/**
|
|
40
|
+
* @record
|
|
41
|
+
*/
|
|
42
|
+
export function ProductChange() { }
|
|
43
|
+
if (false) {
|
|
44
|
+
/** @type {?|undefined} */
|
|
45
|
+
ProductChange.prototype.itemLineId;
|
|
46
|
+
/** @type {?} */
|
|
47
|
+
ProductChange.prototype.SKU;
|
|
48
|
+
/** @type {?} */
|
|
49
|
+
ProductChange.prototype.quantity;
|
|
50
|
+
/** @type {?|undefined} */
|
|
51
|
+
ProductChange.prototype.selectedPrice;
|
|
52
|
+
/** @type {?|undefined} */
|
|
53
|
+
ProductChange.prototype.lineDiscount;
|
|
54
|
+
/** @type {?|undefined} */
|
|
55
|
+
ProductChange.prototype.linePromotions;
|
|
56
|
+
/** @type {?|undefined} */
|
|
57
|
+
ProductChange.prototype.exchange;
|
|
58
|
+
/** @type {?|undefined} */
|
|
59
|
+
ProductChange.prototype.refundedQuantity;
|
|
60
|
+
/** @type {?|undefined} */
|
|
61
|
+
ProductChange.prototype.refundPromotionalQuantity;
|
|
62
|
+
/** @type {?|undefined} */
|
|
63
|
+
ProductChange.prototype.refunded;
|
|
64
|
+
/** @type {?|undefined} */
|
|
65
|
+
ProductChange.prototype.refundedTotal;
|
|
66
|
+
/** @type {?|undefined} */
|
|
67
|
+
ProductChange.prototype.refundedReason;
|
|
68
|
+
/** @type {?|undefined} */
|
|
69
|
+
ProductChange.prototype.refundedReasonDescription;
|
|
70
|
+
/** @type {?|undefined} */
|
|
71
|
+
ProductChange.prototype.isChecked;
|
|
72
|
+
/** @type {?|undefined} */
|
|
73
|
+
ProductChange.prototype.sealed;
|
|
74
|
+
/** @type {?|undefined} */
|
|
75
|
+
ProductChange.prototype.isLastExchanged;
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* Product
|
|
79
|
+
* @record
|
|
80
|
+
*/
|
|
81
|
+
export function Product() { }
|
|
82
|
+
if (false) {
|
|
83
|
+
/** @type {?|undefined} */
|
|
84
|
+
Product.prototype.itemLineId;
|
|
85
|
+
/** @type {?} */
|
|
86
|
+
Product.prototype.status;
|
|
87
|
+
/** @type {?} */
|
|
88
|
+
Product.prototype.subGroup;
|
|
89
|
+
/** @type {?} */
|
|
90
|
+
Product.prototype.brand;
|
|
91
|
+
/** @type {?} */
|
|
92
|
+
Product.prototype.currency;
|
|
93
|
+
/** @type {?} */
|
|
94
|
+
Product.prototype.category;
|
|
95
|
+
/** @type {?} */
|
|
96
|
+
Product.prototype.countryofOrigin;
|
|
97
|
+
/** @type {?} */
|
|
98
|
+
Product.prototype.productId;
|
|
99
|
+
/** @type {?} */
|
|
100
|
+
Product.prototype.productType;
|
|
101
|
+
/** @type {?|undefined} */
|
|
102
|
+
Product.prototype.name;
|
|
103
|
+
/** @type {?} */
|
|
104
|
+
Product.prototype.imageUrls;
|
|
105
|
+
/** @type {?|undefined} */
|
|
106
|
+
Product.prototype.isImageFailToLoad;
|
|
107
|
+
/** @type {?} */
|
|
108
|
+
Product.prototype.size;
|
|
109
|
+
/** @type {?} */
|
|
110
|
+
Product.prototype.type;
|
|
111
|
+
/** @type {?} */
|
|
112
|
+
Product.prototype.season;
|
|
113
|
+
/** @type {?} */
|
|
114
|
+
Product.prototype.productGroup;
|
|
115
|
+
/** @type {?} */
|
|
116
|
+
Product.prototype.styleCode;
|
|
117
|
+
/** @type {?} */
|
|
118
|
+
Product.prototype.nodeStructure;
|
|
119
|
+
/** @type {?} */
|
|
120
|
+
Product.prototype.barcode;
|
|
121
|
+
/** @type {?} */
|
|
122
|
+
Product.prototype.price;
|
|
123
|
+
/** @type {?} */
|
|
124
|
+
Product.prototype.colour;
|
|
125
|
+
/** @type {?} */
|
|
126
|
+
Product.prototype.description;
|
|
127
|
+
/** @type {?} */
|
|
128
|
+
Product.prototype.totalLinePrice;
|
|
129
|
+
/** @type {?} */
|
|
130
|
+
Product.prototype.total;
|
|
131
|
+
/** @type {?|undefined} */
|
|
132
|
+
Product.prototype.addedInBasket;
|
|
133
|
+
/** @type {?|undefined} */
|
|
134
|
+
Product.prototype.selectedVAT;
|
|
135
|
+
/** @type {?|undefined} */
|
|
136
|
+
Product.prototype.selectedVATCode;
|
|
137
|
+
/** @type {?|undefined} */
|
|
138
|
+
Product.prototype.selectedRRPPrice;
|
|
139
|
+
/** @type {?|undefined} */
|
|
140
|
+
Product.prototype.lineDiscount;
|
|
141
|
+
/** @type {?|undefined} */
|
|
142
|
+
Product.prototype.exchange;
|
|
143
|
+
/** @type {?|undefined} */
|
|
144
|
+
Product.prototype.refundPromotionalQuantity;
|
|
145
|
+
/** @type {?|undefined} */
|
|
146
|
+
Product.prototype.exchangeReason;
|
|
147
|
+
/** @type {?|undefined} */
|
|
148
|
+
Product.prototype.exchangeQuantity;
|
|
149
|
+
/** @type {?} */
|
|
150
|
+
Product.prototype.itemDiscounts;
|
|
151
|
+
/** @type {?|undefined} */
|
|
152
|
+
Product.prototype.giftCardNumberIssued;
|
|
153
|
+
/** @type {?|undefined} */
|
|
154
|
+
Product.prototype.giftCardAmount;
|
|
155
|
+
/** @type {?|undefined} */
|
|
156
|
+
Product.prototype.giftCardRecipientEmail;
|
|
157
|
+
/** @type {?|undefined} */
|
|
158
|
+
Product.prototype.giftCardExpiryDate;
|
|
159
|
+
/** @type {?|undefined} */
|
|
160
|
+
Product.prototype.giftCardRecipientName;
|
|
161
|
+
/** @type {?|undefined} */
|
|
162
|
+
Product.prototype.giftCard;
|
|
163
|
+
/** @type {?} */
|
|
164
|
+
Product.prototype.discountable;
|
|
165
|
+
/** @type {?} */
|
|
166
|
+
Product.prototype.excludePromotion;
|
|
167
|
+
/** @type {?} */
|
|
168
|
+
Product.prototype.categories;
|
|
169
|
+
/** @type {?} */
|
|
170
|
+
Product.prototype.descriptions;
|
|
171
|
+
/** @type {?} */
|
|
172
|
+
Product.prototype.barcodes;
|
|
173
|
+
/** @type {?} */
|
|
174
|
+
Product.prototype.externalId;
|
|
175
|
+
/** @type {?} */
|
|
176
|
+
Product.prototype.createdDate;
|
|
177
|
+
/** @type {?} */
|
|
178
|
+
Product.prototype.updatedDate;
|
|
179
|
+
/** @type {?} */
|
|
180
|
+
Product.prototype.createdBy;
|
|
181
|
+
/** @type {?} */
|
|
182
|
+
Product.prototype.updatedBy;
|
|
183
|
+
/** @type {?} */
|
|
184
|
+
Product.prototype.attributes;
|
|
185
|
+
/** @type {?} */
|
|
186
|
+
Product.prototype.id;
|
|
187
|
+
/** @type {?} */
|
|
188
|
+
Product.prototype.long_description;
|
|
189
|
+
/** @type {?|undefined} */
|
|
190
|
+
Product.prototype.isWebOrder;
|
|
191
|
+
/** @type {?} */
|
|
192
|
+
Product.prototype.fullfilmentId;
|
|
193
|
+
/** @type {?|undefined} */
|
|
194
|
+
Product.prototype.fullfilmentLocationName;
|
|
195
|
+
/** @type {?|undefined} */
|
|
196
|
+
Product.prototype.deliveryMethod;
|
|
197
|
+
/** @type {?|undefined} */
|
|
198
|
+
Product.prototype.deliveryGroup;
|
|
199
|
+
/** @type {?|undefined} */
|
|
200
|
+
Product.prototype.selectedInventory;
|
|
201
|
+
/** @type {?|undefined} */
|
|
202
|
+
Product.prototype.leadTime;
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* @record
|
|
206
|
+
*/
|
|
207
|
+
export function leadTime() { }
|
|
208
|
+
if (false) {
|
|
209
|
+
/** @type {?} */
|
|
210
|
+
leadTime.prototype.type;
|
|
211
|
+
/** @type {?} */
|
|
212
|
+
leadTime.prototype.value;
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* @record
|
|
216
|
+
*/
|
|
217
|
+
export function Exchange() { }
|
|
218
|
+
if (false) {
|
|
219
|
+
/** @type {?} */
|
|
220
|
+
Exchange.prototype.exchangeId;
|
|
221
|
+
/** @type {?} */
|
|
222
|
+
Exchange.prototype.lineItemId;
|
|
223
|
+
/** @type {?} */
|
|
224
|
+
Exchange.prototype.reason;
|
|
225
|
+
/** @type {?} */
|
|
226
|
+
Exchange.prototype.quantity;
|
|
227
|
+
/** @type {?} */
|
|
228
|
+
Exchange.prototype.newItems;
|
|
229
|
+
}
|
|
230
|
+
/**
|
|
231
|
+
* @record
|
|
232
|
+
*/
|
|
233
|
+
export function Categories() { }
|
|
234
|
+
if (false) {
|
|
235
|
+
/** @type {?} */
|
|
236
|
+
Categories.prototype.id;
|
|
237
|
+
/** @type {?} */
|
|
238
|
+
Categories.prototype.parentId;
|
|
239
|
+
/** @type {?} */
|
|
240
|
+
Categories.prototype.name;
|
|
241
|
+
/** @type {?} */
|
|
242
|
+
Categories.prototype.categoryId;
|
|
243
|
+
/** @type {?} */
|
|
244
|
+
Categories.prototype.status;
|
|
245
|
+
}
|
|
246
|
+
/**
|
|
247
|
+
* @record
|
|
248
|
+
*/
|
|
249
|
+
export function Descriptions() { }
|
|
250
|
+
if (false) {
|
|
251
|
+
/** @type {?} */
|
|
252
|
+
Descriptions.prototype.name;
|
|
253
|
+
/** @type {?} */
|
|
254
|
+
Descriptions.prototype.countryCode;
|
|
255
|
+
/** @type {?} */
|
|
256
|
+
Descriptions.prototype.value;
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* @record
|
|
260
|
+
*/
|
|
261
|
+
export function CoreAttribute() { }
|
|
262
|
+
if (false) {
|
|
263
|
+
/** @type {?} */
|
|
264
|
+
CoreAttribute.prototype.name;
|
|
265
|
+
/** @type {?} */
|
|
266
|
+
CoreAttribute.prototype.value;
|
|
267
|
+
/** @type {?} */
|
|
268
|
+
CoreAttribute.prototype.searchable;
|
|
269
|
+
/** @type {?} */
|
|
270
|
+
CoreAttribute.prototype.countryCode;
|
|
271
|
+
}
|
|
272
|
+
/**
|
|
273
|
+
* Basket
|
|
274
|
+
* @record
|
|
275
|
+
*/
|
|
276
|
+
export function Basket() { }
|
|
277
|
+
if (false) {
|
|
278
|
+
/** @type {?|undefined} */
|
|
279
|
+
Basket.prototype.subsidiaryId;
|
|
280
|
+
/** @type {?} */
|
|
281
|
+
Basket.prototype.products;
|
|
282
|
+
/** @type {?} */
|
|
283
|
+
Basket.prototype.transactionDiscount;
|
|
284
|
+
/** @type {?} */
|
|
285
|
+
Basket.prototype.quantity;
|
|
286
|
+
/** @type {?} */
|
|
287
|
+
Basket.prototype.total;
|
|
288
|
+
/** @type {?} */
|
|
289
|
+
Basket.prototype.saleTotal;
|
|
290
|
+
/** @type {?|undefined} */
|
|
291
|
+
Basket.prototype.discountTotal;
|
|
292
|
+
/** @type {?|undefined} */
|
|
293
|
+
Basket.prototype.transactionId;
|
|
294
|
+
/** @type {?|undefined} */
|
|
295
|
+
Basket.prototype.offlineTransactionId;
|
|
296
|
+
/** @type {?} */
|
|
297
|
+
Basket.prototype.baseCurrency;
|
|
298
|
+
/** @type {?|undefined} */
|
|
299
|
+
Basket.prototype.basketTotal;
|
|
300
|
+
/** @type {?|undefined} */
|
|
301
|
+
Basket.prototype.refundTotal;
|
|
302
|
+
/** @type {?|undefined} */
|
|
303
|
+
Basket.prototype.transactionPromotion;
|
|
304
|
+
/** @type {?|undefined} */
|
|
305
|
+
Basket.prototype.customer;
|
|
306
|
+
/** @type {?|undefined} */
|
|
307
|
+
Basket.prototype.exchange;
|
|
308
|
+
/** @type {?|undefined} */
|
|
309
|
+
Basket.prototype.inStoreFlag;
|
|
310
|
+
}
|
|
311
|
+
/**
|
|
312
|
+
* Price
|
|
313
|
+
* @record
|
|
314
|
+
*/
|
|
315
|
+
export function Price() { }
|
|
316
|
+
if (false) {
|
|
317
|
+
/** @type {?} */
|
|
318
|
+
Price.prototype.VAT;
|
|
319
|
+
/** @type {?} */
|
|
320
|
+
Price.prototype.VATCode;
|
|
321
|
+
/** @type {?} */
|
|
322
|
+
Price.prototype.salesPrice;
|
|
323
|
+
/** @type {?} */
|
|
324
|
+
Price.prototype.currencyCode;
|
|
325
|
+
/** @type {?} */
|
|
326
|
+
Price.prototype.RRPPrice;
|
|
327
|
+
}
|
|
328
|
+
/**
|
|
329
|
+
* Node structure
|
|
330
|
+
* @record
|
|
331
|
+
*/
|
|
332
|
+
function NodeStructure() { }
|
|
333
|
+
if (false) {
|
|
334
|
+
/** @type {?} */
|
|
335
|
+
NodeStructure.prototype.status;
|
|
336
|
+
/** @type {?} */
|
|
337
|
+
NodeStructure.prototype.name;
|
|
338
|
+
/** @type {?} */
|
|
339
|
+
NodeStructure.prototype.nodeType;
|
|
340
|
+
/** @type {?} */
|
|
341
|
+
NodeStructure.prototype.isOverride;
|
|
342
|
+
/** @type {?} */
|
|
343
|
+
NodeStructure.prototype.nodeId;
|
|
344
|
+
/** @type {?} */
|
|
345
|
+
NodeStructure.prototype.parentId;
|
|
346
|
+
}
|
|
347
|
+
/**
|
|
348
|
+
* Line Discount
|
|
349
|
+
* @record
|
|
350
|
+
*/
|
|
351
|
+
export function LineDiscount() { }
|
|
352
|
+
if (false) {
|
|
353
|
+
/** @type {?} */
|
|
354
|
+
LineDiscount.prototype.itemLineId;
|
|
355
|
+
/** @type {?} */
|
|
356
|
+
LineDiscount.prototype.discountAmount;
|
|
357
|
+
/** @type {?} */
|
|
358
|
+
LineDiscount.prototype.discountType;
|
|
359
|
+
/** @type {?|undefined} */
|
|
360
|
+
LineDiscount.prototype.name;
|
|
361
|
+
/** @type {?} */
|
|
362
|
+
LineDiscount.prototype.unitPrice;
|
|
363
|
+
/** @type {?|undefined} */
|
|
364
|
+
LineDiscount.prototype.discountedLinePrice;
|
|
365
|
+
/** @type {?|undefined} */
|
|
366
|
+
LineDiscount.prototype.priceManagerOverride;
|
|
367
|
+
/** @type {?|undefined} */
|
|
368
|
+
LineDiscount.prototype.priceOverrideReasonCode;
|
|
369
|
+
/** @type {?|undefined} */
|
|
370
|
+
LineDiscount.prototype.priceOverrideReasonName;
|
|
371
|
+
/** @type {?|undefined} */
|
|
372
|
+
LineDiscount.prototype.priceOverrideAmount;
|
|
373
|
+
/** @type {?|undefined} */
|
|
374
|
+
LineDiscount.prototype.percentageDiscountManagerOverride;
|
|
375
|
+
/** @type {?|undefined} */
|
|
376
|
+
LineDiscount.prototype.percentageDiscountReasonCode;
|
|
377
|
+
/** @type {?|undefined} */
|
|
378
|
+
LineDiscount.prototype.percentageDiscountReasonName;
|
|
379
|
+
/** @type {?|undefined} */
|
|
380
|
+
LineDiscount.prototype.percentageDiscountValue;
|
|
381
|
+
}
|
|
382
|
+
/**
|
|
383
|
+
* User Override
|
|
384
|
+
* @record
|
|
385
|
+
*/
|
|
386
|
+
export function UserOverride() { }
|
|
387
|
+
if (false) {
|
|
388
|
+
/** @type {?} */
|
|
389
|
+
UserOverride.prototype.userId;
|
|
390
|
+
/** @type {?} */
|
|
391
|
+
UserOverride.prototype.automaticApprove;
|
|
392
|
+
/** @type {?} */
|
|
393
|
+
UserOverride.prototype.originalUserId;
|
|
394
|
+
}
|
|
395
|
+
/**
|
|
396
|
+
* line Promotions
|
|
397
|
+
* @record
|
|
398
|
+
*/
|
|
399
|
+
export function LinePromotions() { }
|
|
400
|
+
if (false) {
|
|
401
|
+
/** @type {?} */
|
|
402
|
+
LinePromotions.prototype.trigger;
|
|
403
|
+
/** @type {?} */
|
|
404
|
+
LinePromotions.prototype.itemLineId;
|
|
405
|
+
/** @type {?} */
|
|
406
|
+
LinePromotions.prototype.promotionId;
|
|
407
|
+
/** @type {?} */
|
|
408
|
+
LinePromotions.prototype.displayText;
|
|
409
|
+
/** @type {?} */
|
|
410
|
+
LinePromotions.prototype.promotionType;
|
|
411
|
+
/** @type {?} */
|
|
412
|
+
LinePromotions.prototype.promotionAmount;
|
|
413
|
+
/** @type {?} */
|
|
414
|
+
LinePromotions.prototype.name;
|
|
415
|
+
/** @type {?} */
|
|
416
|
+
LinePromotions.prototype.promotionInfo;
|
|
417
|
+
/** @type {?} */
|
|
418
|
+
LinePromotions.prototype.promotionLinePrice;
|
|
419
|
+
/** @type {?|undefined} */
|
|
420
|
+
LinePromotions.prototype.refunded;
|
|
421
|
+
}
|
|
422
|
+
/**
|
|
423
|
+
* trigger
|
|
424
|
+
* @record
|
|
425
|
+
*/
|
|
426
|
+
export function Trigger() { }
|
|
427
|
+
if (false) {
|
|
428
|
+
/** @type {?} */
|
|
429
|
+
Trigger.prototype.itemLineId;
|
|
430
|
+
/** @type {?|undefined} */
|
|
431
|
+
Trigger.prototype.quantity;
|
|
432
|
+
/** @type {?|undefined} */
|
|
433
|
+
Trigger.prototype.totalQuantity;
|
|
434
|
+
}
|
|
435
|
+
/**
|
|
436
|
+
* Transaction Promotion
|
|
437
|
+
* @record
|
|
438
|
+
*/
|
|
439
|
+
export function TransactionPromotion() { }
|
|
440
|
+
if (false) {
|
|
441
|
+
/** @type {?} */
|
|
442
|
+
TransactionPromotion.prototype.displayText;
|
|
443
|
+
/** @type {?} */
|
|
444
|
+
TransactionPromotion.prototype.name;
|
|
445
|
+
/** @type {?} */
|
|
446
|
+
TransactionPromotion.prototype.promotionAmount;
|
|
447
|
+
/** @type {?} */
|
|
448
|
+
TransactionPromotion.prototype.promotionId;
|
|
449
|
+
/** @type {?} */
|
|
450
|
+
TransactionPromotion.prototype.promotionInfo;
|
|
451
|
+
/** @type {?} */
|
|
452
|
+
TransactionPromotion.prototype.promotionType;
|
|
453
|
+
/** @type {?} */
|
|
454
|
+
TransactionPromotion.prototype.itemLineIds;
|
|
455
|
+
}
|
|
456
|
+
/**
|
|
457
|
+
* @record
|
|
458
|
+
*/
|
|
459
|
+
export function RefundProductChange() { }
|
|
460
|
+
if (false) {
|
|
461
|
+
/** @type {?|undefined} */
|
|
462
|
+
RefundProductChange.prototype.itemLineId;
|
|
463
|
+
/** @type {?|undefined} */
|
|
464
|
+
RefundProductChange.prototype.refundedQuantity;
|
|
465
|
+
/** @type {?|undefined} */
|
|
466
|
+
RefundProductChange.prototype.refundedPromotionalQuantity;
|
|
467
|
+
/** @type {?|undefined} */
|
|
468
|
+
RefundProductChange.prototype.refundTotal;
|
|
469
|
+
/** @type {?|undefined} */
|
|
470
|
+
RefundProductChange.prototype.refundedReason;
|
|
471
|
+
/** @type {?|undefined} */
|
|
472
|
+
RefundProductChange.prototype.refundedReasonDescription;
|
|
473
|
+
/** @type {?} */
|
|
474
|
+
RefundProductChange.prototype.refundWithPromotion;
|
|
475
|
+
/** @type {?|undefined} */
|
|
476
|
+
RefundProductChange.prototype.isLastExchanged;
|
|
477
|
+
}
|
|
478
|
+
/**
|
|
479
|
+
* @record
|
|
480
|
+
*/
|
|
481
|
+
export function InventoryInfo() { }
|
|
482
|
+
if (false) {
|
|
483
|
+
/** @type {?} */
|
|
484
|
+
InventoryInfo.prototype.storeName;
|
|
485
|
+
/** @type {?} */
|
|
486
|
+
InventoryInfo.prototype.storeId;
|
|
487
|
+
/** @type {?} */
|
|
488
|
+
InventoryInfo.prototype.quantityAvailable;
|
|
489
|
+
/** @type {?} */
|
|
490
|
+
InventoryInfo.prototype.quantityRequired;
|
|
491
|
+
}
|
|
492
|
+
/**
|
|
493
|
+
* @record
|
|
494
|
+
*/
|
|
495
|
+
export function InventoryRequestInfo() { }
|
|
496
|
+
if (false) {
|
|
497
|
+
/** @type {?} */
|
|
498
|
+
InventoryRequestInfo.prototype.requestedQuantity;
|
|
499
|
+
/** @type {?} */
|
|
500
|
+
InventoryRequestInfo.prototype.requestedAction;
|
|
501
|
+
}
|
|
502
|
+
/**
|
|
503
|
+
* @record
|
|
504
|
+
*/
|
|
505
|
+
export function DeliveryInfo() { }
|
|
506
|
+
if (false) {
|
|
507
|
+
/** @type {?} */
|
|
508
|
+
DeliveryInfo.prototype.groups;
|
|
509
|
+
}
|
|
510
|
+
/**
|
|
511
|
+
* @record
|
|
512
|
+
*/
|
|
513
|
+
export function DeliveryGroupInfo() { }
|
|
514
|
+
if (false) {
|
|
515
|
+
/** @type {?} */
|
|
516
|
+
DeliveryGroupInfo.prototype.groupNumber;
|
|
517
|
+
/** @type {?} */
|
|
518
|
+
DeliveryGroupInfo.prototype.items;
|
|
519
|
+
/** @type {?|undefined} */
|
|
520
|
+
DeliveryGroupInfo.prototype.estimate;
|
|
521
|
+
}
|
|
522
|
+
/**
|
|
523
|
+
* @record
|
|
524
|
+
*/
|
|
525
|
+
export function Estimate() { }
|
|
526
|
+
if (false) {
|
|
527
|
+
/** @type {?} */
|
|
528
|
+
Estimate.prototype.type;
|
|
529
|
+
/** @type {?} */
|
|
530
|
+
Estimate.prototype.value;
|
|
531
|
+
}
|
|
532
|
+
/**
|
|
533
|
+
* @record
|
|
534
|
+
*/
|
|
535
|
+
export function TransactionDocument() { }
|
|
536
|
+
if (false) {
|
|
537
|
+
/** @type {?|undefined} */
|
|
538
|
+
TransactionDocument.prototype.transactionId;
|
|
539
|
+
/** @type {?|undefined} */
|
|
540
|
+
TransactionDocument.prototype.subsidiaryId;
|
|
541
|
+
/** @type {?|undefined} */
|
|
542
|
+
TransactionDocument.prototype.offlineTransactionId;
|
|
543
|
+
/** @type {?|undefined} */
|
|
544
|
+
TransactionDocument.prototype.transactionRef;
|
|
545
|
+
/** @type {?|undefined} */
|
|
546
|
+
TransactionDocument.prototype.dateTime;
|
|
547
|
+
/** @type {?} */
|
|
548
|
+
TransactionDocument.prototype.orgCode;
|
|
549
|
+
/** @type {?} */
|
|
550
|
+
TransactionDocument.prototype.storeId;
|
|
551
|
+
/** @type {?} */
|
|
552
|
+
TransactionDocument.prototype.storeNodeId;
|
|
553
|
+
/** @type {?} */
|
|
554
|
+
TransactionDocument.prototype.storeNodeStructure;
|
|
555
|
+
/** @type {?} */
|
|
556
|
+
TransactionDocument.prototype.deviceId;
|
|
557
|
+
/** @type {?} */
|
|
558
|
+
TransactionDocument.prototype.terminalId;
|
|
559
|
+
/** @type {?} */
|
|
560
|
+
TransactionDocument.prototype.initiatingModule;
|
|
561
|
+
/** @type {?} */
|
|
562
|
+
TransactionDocument.prototype.export;
|
|
563
|
+
/** @type {?|undefined} */
|
|
564
|
+
TransactionDocument.prototype.userId;
|
|
565
|
+
/** @type {?|undefined} */
|
|
566
|
+
TransactionDocument.prototype.userName;
|
|
567
|
+
/** @type {?|undefined} */
|
|
568
|
+
TransactionDocument.prototype.customer;
|
|
569
|
+
/** @type {?} */
|
|
570
|
+
TransactionDocument.prototype.basket;
|
|
571
|
+
/** @type {?} */
|
|
572
|
+
TransactionDocument.prototype.basketSummary;
|
|
573
|
+
/** @type {?} */
|
|
574
|
+
TransactionDocument.prototype.baseCurrency;
|
|
575
|
+
/** @type {?|undefined} */
|
|
576
|
+
TransactionDocument.prototype.splitPayment;
|
|
577
|
+
/** @type {?|undefined} */
|
|
578
|
+
TransactionDocument.prototype.isPaymentCompleted;
|
|
579
|
+
/** @type {?|undefined} */
|
|
580
|
+
TransactionDocument.prototype.paymentDetails;
|
|
581
|
+
/** @type {?|undefined} */
|
|
582
|
+
TransactionDocument.prototype.type;
|
|
583
|
+
/** @type {?|undefined} */
|
|
584
|
+
TransactionDocument.prototype.operationStatus;
|
|
585
|
+
/** @type {?|undefined} */
|
|
586
|
+
TransactionDocument.prototype.createdAt;
|
|
587
|
+
/** @type {?|undefined} */
|
|
588
|
+
TransactionDocument.prototype.updatedAt;
|
|
589
|
+
/** @type {?|undefined} */
|
|
590
|
+
TransactionDocument.prototype.transCompletedAt;
|
|
591
|
+
/** @type {?|undefined} */
|
|
592
|
+
TransactionDocument.prototype.id;
|
|
593
|
+
/** @type {?|undefined} */
|
|
594
|
+
TransactionDocument.prototype.saleTotal;
|
|
595
|
+
/** @type {?|undefined} */
|
|
596
|
+
TransactionDocument.prototype.reasonCode;
|
|
597
|
+
/** @type {?|undefined} */
|
|
598
|
+
TransactionDocument.prototype.reasonDescription;
|
|
599
|
+
/** @type {?|undefined} */
|
|
600
|
+
TransactionDocument.prototype.override;
|
|
601
|
+
/** @type {?|undefined} */
|
|
602
|
+
TransactionDocument.prototype.originalTransId;
|
|
603
|
+
/** @type {?|undefined} */
|
|
604
|
+
TransactionDocument.prototype.originalExternalId;
|
|
605
|
+
/** @type {?|undefined} */
|
|
606
|
+
TransactionDocument.prototype.apiResponse;
|
|
607
|
+
/** @type {?|undefined} */
|
|
608
|
+
TransactionDocument.prototype.unreferencedRefund;
|
|
609
|
+
/** @type {?|undefined} */
|
|
610
|
+
TransactionDocument.prototype.giftedReceipt;
|
|
611
|
+
/** @type {?|undefined} */
|
|
612
|
+
TransactionDocument.prototype.currentTransactionDetails;
|
|
613
|
+
/** @type {?|undefined} */
|
|
614
|
+
TransactionDocument.prototype.isChecked;
|
|
615
|
+
}
|
|
616
|
+
/**
|
|
617
|
+
* @record
|
|
618
|
+
*/
|
|
619
|
+
export function APIResponse() { }
|
|
620
|
+
if (false) {
|
|
621
|
+
/** @type {?|undefined} */
|
|
622
|
+
APIResponse.prototype.internalId;
|
|
623
|
+
/** @type {?|undefined} */
|
|
624
|
+
APIResponse.prototype.tranid;
|
|
625
|
+
}
|
|
626
|
+
/**
|
|
627
|
+
* @record
|
|
628
|
+
*/
|
|
629
|
+
export function CurrentTransactionDetails() { }
|
|
630
|
+
if (false) {
|
|
631
|
+
/** @type {?} */
|
|
632
|
+
CurrentTransactionDetails.prototype.products;
|
|
633
|
+
/** @type {?|undefined} */
|
|
634
|
+
CurrentTransactionDetails.prototype.lineDiscount;
|
|
635
|
+
/** @type {?|undefined} */
|
|
636
|
+
CurrentTransactionDetails.prototype.linePromotion;
|
|
637
|
+
/** @type {?|undefined} */
|
|
638
|
+
CurrentTransactionDetails.prototype.transactionPromotion;
|
|
639
|
+
/** @type {?|undefined} */
|
|
640
|
+
CurrentTransactionDetails.prototype.transactionDiscount;
|
|
641
|
+
/** @type {?|undefined} */
|
|
642
|
+
CurrentTransactionDetails.prototype.basketSummary;
|
|
643
|
+
/** @type {?|undefined} */
|
|
644
|
+
CurrentTransactionDetails.prototype.taxBreakdown;
|
|
645
|
+
/** @type {?|undefined} */
|
|
646
|
+
CurrentTransactionDetails.prototype.totalTaxSummary;
|
|
647
|
+
}
|
|
648
|
+
/**
|
|
649
|
+
* @record
|
|
650
|
+
*/
|
|
651
|
+
export function BasketSummary() { }
|
|
652
|
+
if (false) {
|
|
653
|
+
/** @type {?} */
|
|
654
|
+
BasketSummary.prototype.totalItems;
|
|
655
|
+
/** @type {?} */
|
|
656
|
+
BasketSummary.prototype.saleTotal;
|
|
657
|
+
/** @type {?} */
|
|
658
|
+
BasketSummary.prototype.VATTotal;
|
|
659
|
+
/** @type {?} */
|
|
660
|
+
BasketSummary.prototype.discountTotal;
|
|
661
|
+
/** @type {?} */
|
|
662
|
+
BasketSummary.prototype.basketTotal;
|
|
663
|
+
/** @type {?|undefined} */
|
|
664
|
+
BasketSummary.prototype.refundTotal;
|
|
665
|
+
}
|
|
666
|
+
/**
|
|
667
|
+
* @record
|
|
668
|
+
*/
|
|
669
|
+
export function TransactionDiscount() { }
|
|
670
|
+
if (false) {
|
|
671
|
+
/** @type {?} */
|
|
672
|
+
TransactionDiscount.prototype.discountAmount;
|
|
673
|
+
/** @type {?} */
|
|
674
|
+
TransactionDiscount.prototype.discountType;
|
|
675
|
+
/** @type {?} */
|
|
676
|
+
TransactionDiscount.prototype.reasonCode;
|
|
677
|
+
/** @type {?|undefined} */
|
|
678
|
+
TransactionDiscount.prototype.override;
|
|
679
|
+
/** @type {?|undefined} */
|
|
680
|
+
TransactionDiscount.prototype.itemLineIds;
|
|
681
|
+
}
|
|
682
|
+
/**
|
|
683
|
+
* @record
|
|
684
|
+
*/
|
|
685
|
+
export function TBasket() { }
|
|
686
|
+
if (false) {
|
|
687
|
+
/** @type {?} */
|
|
688
|
+
TBasket.prototype.products;
|
|
689
|
+
/** @type {?} */
|
|
690
|
+
TBasket.prototype.lineDiscount;
|
|
691
|
+
/** @type {?} */
|
|
692
|
+
TBasket.prototype.exchange;
|
|
693
|
+
/** @type {?} */
|
|
694
|
+
TBasket.prototype.linePromotion;
|
|
695
|
+
/** @type {?|undefined} */
|
|
696
|
+
TBasket.prototype.transactionPromotion;
|
|
697
|
+
/** @type {?|undefined} */
|
|
698
|
+
TBasket.prototype.transactionDiscount;
|
|
699
|
+
/** @type {?|undefined} */
|
|
700
|
+
TBasket.prototype.taxBreakdown;
|
|
701
|
+
/** @type {?|undefined} */
|
|
702
|
+
TBasket.prototype.totalTaxSummary;
|
|
703
|
+
}
|
|
704
|
+
/**
|
|
705
|
+
* @record
|
|
706
|
+
*/
|
|
707
|
+
export function TExchange() { }
|
|
708
|
+
if (false) {
|
|
709
|
+
/** @type {?|undefined} */
|
|
710
|
+
TExchange.prototype.exchangeId;
|
|
711
|
+
/** @type {?|undefined} */
|
|
712
|
+
TExchange.prototype.lineItemId;
|
|
713
|
+
/** @type {?|undefined} */
|
|
714
|
+
TExchange.prototype.reason;
|
|
715
|
+
/** @type {?|undefined} */
|
|
716
|
+
TExchange.prototype.quantity;
|
|
717
|
+
/** @type {?|undefined} */
|
|
718
|
+
TExchange.prototype.newItems;
|
|
719
|
+
}
|
|
720
|
+
/**
|
|
721
|
+
* @record
|
|
722
|
+
*/
|
|
723
|
+
export function TNewItems() { }
|
|
724
|
+
if (false) {
|
|
725
|
+
/** @type {?} */
|
|
726
|
+
TNewItems.prototype.lineItemId;
|
|
727
|
+
/** @type {?} */
|
|
728
|
+
TNewItems.prototype.Quantity;
|
|
729
|
+
}
|
|
730
|
+
/**
|
|
731
|
+
* @record
|
|
732
|
+
*/
|
|
733
|
+
export function TProduct() { }
|
|
734
|
+
if (false) {
|
|
735
|
+
/** @type {?} */
|
|
736
|
+
TProduct.prototype.itemLineId;
|
|
737
|
+
/** @type {?} */
|
|
738
|
+
TProduct.prototype.SKU;
|
|
739
|
+
/** @type {?} */
|
|
740
|
+
TProduct.prototype.description;
|
|
741
|
+
/** @type {?} */
|
|
742
|
+
TProduct.prototype.imageUrls;
|
|
743
|
+
/** @type {?} */
|
|
744
|
+
TProduct.prototype.price;
|
|
745
|
+
/** @type {?|undefined} */
|
|
746
|
+
TProduct.prototype.taxCode;
|
|
747
|
+
/** @type {?|undefined} */
|
|
748
|
+
TProduct.prototype.taxPercent;
|
|
749
|
+
/** @type {?} */
|
|
750
|
+
TProduct.prototype.quantity;
|
|
751
|
+
/** @type {?|undefined} */
|
|
752
|
+
TProduct.prototype.refundedQuantity;
|
|
753
|
+
/** @type {?|undefined} */
|
|
754
|
+
TProduct.prototype.refundedPromotionalQuantity;
|
|
755
|
+
/** @type {?|undefined} */
|
|
756
|
+
TProduct.prototype.refunded;
|
|
757
|
+
/** @type {?|undefined} */
|
|
758
|
+
TProduct.prototype.refundedTotal;
|
|
759
|
+
/** @type {?|undefined} */
|
|
760
|
+
TProduct.prototype.refundedReason;
|
|
761
|
+
/** @type {?|undefined} */
|
|
762
|
+
TProduct.prototype.refundedReasonDescription;
|
|
763
|
+
/** @type {?|undefined} */
|
|
764
|
+
TProduct.prototype.selectedRRPPrice;
|
|
765
|
+
/** @type {?} */
|
|
766
|
+
TProduct.prototype.totalLinePrice;
|
|
767
|
+
/** @type {?|undefined} */
|
|
768
|
+
TProduct.prototype.barCode;
|
|
769
|
+
/** @type {?|undefined} */
|
|
770
|
+
TProduct.prototype.barcodes;
|
|
771
|
+
/** @type {?|undefined} */
|
|
772
|
+
TProduct.prototype.flagged;
|
|
773
|
+
/** @type {?|undefined} */
|
|
774
|
+
TProduct.prototype.exchange;
|
|
775
|
+
/** @type {?} */
|
|
776
|
+
TProduct.prototype.excludePromotion;
|
|
777
|
+
/** @type {?|undefined} */
|
|
778
|
+
TProduct.prototype.discountable;
|
|
779
|
+
/** @type {?|undefined} */
|
|
780
|
+
TProduct.prototype.itemDiscounts;
|
|
781
|
+
/** @type {?|undefined} */
|
|
782
|
+
TProduct.prototype.isLastExchanged;
|
|
783
|
+
/** @type {?} */
|
|
784
|
+
TProduct.prototype.fullfilmentId;
|
|
785
|
+
/** @type {?} */
|
|
786
|
+
TProduct.prototype.fullfilmentLocationName;
|
|
787
|
+
/** @type {?|undefined} */
|
|
788
|
+
TProduct.prototype.deliveryMethod;
|
|
789
|
+
/** @type {?|undefined} */
|
|
790
|
+
TProduct.prototype.deliveryGroup;
|
|
791
|
+
/** @type {?|undefined} */
|
|
792
|
+
TProduct.prototype.giftCardNumberIssued;
|
|
793
|
+
/** @type {?|undefined} */
|
|
794
|
+
TProduct.prototype.giftCardAmount;
|
|
795
|
+
/** @type {?|undefined} */
|
|
796
|
+
TProduct.prototype.giftCardRecipientEmail;
|
|
797
|
+
/** @type {?|undefined} */
|
|
798
|
+
TProduct.prototype.giftCardExpiryDate;
|
|
799
|
+
/** @type {?|undefined} */
|
|
800
|
+
TProduct.prototype.giftCardRecipientName;
|
|
801
|
+
/** @type {?|undefined} */
|
|
802
|
+
TProduct.prototype.giftCard;
|
|
803
|
+
/** @type {?|undefined} */
|
|
804
|
+
TProduct.prototype.currency;
|
|
805
|
+
/** @type {?|undefined} */
|
|
806
|
+
TProduct.prototype.isWebOrder;
|
|
807
|
+
/** @type {?|undefined} */
|
|
808
|
+
TProduct.prototype.leadTime;
|
|
809
|
+
/** @type {?|undefined} */
|
|
810
|
+
TProduct.prototype.lineDiscount;
|
|
811
|
+
}
|
|
812
|
+
/**
|
|
813
|
+
* @record
|
|
814
|
+
*/
|
|
815
|
+
export function ItemDiscounts() { }
|
|
816
|
+
if (false) {
|
|
817
|
+
/** @type {?} */
|
|
818
|
+
ItemDiscounts.prototype.trnDiscountsPortion;
|
|
819
|
+
/** @type {?} */
|
|
820
|
+
ItemDiscounts.prototype.trnPromotionsPortion;
|
|
821
|
+
/** @type {?} */
|
|
822
|
+
ItemDiscounts.prototype.refundPortion;
|
|
823
|
+
}
|
|
824
|
+
/**
|
|
825
|
+
* @record
|
|
826
|
+
*/
|
|
827
|
+
export function Customer() { }
|
|
828
|
+
if (false) {
|
|
829
|
+
/** @type {?} */
|
|
830
|
+
Customer.prototype.id;
|
|
831
|
+
/** @type {?|undefined} */
|
|
832
|
+
Customer.prototype.title;
|
|
833
|
+
/** @type {?} */
|
|
834
|
+
Customer.prototype.firstName;
|
|
835
|
+
/** @type {?} */
|
|
836
|
+
Customer.prototype.lastName;
|
|
837
|
+
/** @type {?} */
|
|
838
|
+
Customer.prototype.email;
|
|
839
|
+
/** @type {?} */
|
|
840
|
+
Customer.prototype.postCode;
|
|
841
|
+
/** @type {?|undefined} */
|
|
842
|
+
Customer.prototype.telephone;
|
|
843
|
+
/** @type {?|undefined} */
|
|
844
|
+
Customer.prototype.billingAddress;
|
|
845
|
+
/** @type {?|undefined} */
|
|
846
|
+
Customer.prototype.shippingAddress;
|
|
847
|
+
/** @type {?|undefined} */
|
|
848
|
+
Customer.prototype.addressDetail;
|
|
849
|
+
/** @type {?|undefined} */
|
|
850
|
+
Customer.prototype.noCustomerSelected;
|
|
851
|
+
/** @type {?|undefined} */
|
|
852
|
+
Customer.prototype.externalId;
|
|
853
|
+
}
|
|
854
|
+
/**
|
|
855
|
+
* @record
|
|
856
|
+
*/
|
|
857
|
+
export function Address() { }
|
|
858
|
+
if (false) {
|
|
859
|
+
/** @type {?|undefined} */
|
|
860
|
+
Address.prototype.address1;
|
|
861
|
+
/** @type {?|undefined} */
|
|
862
|
+
Address.prototype.address2;
|
|
863
|
+
/** @type {?|undefined} */
|
|
864
|
+
Address.prototype.address3;
|
|
865
|
+
/** @type {?|undefined} */
|
|
866
|
+
Address.prototype.city;
|
|
867
|
+
/** @type {?|undefined} */
|
|
868
|
+
Address.prototype.county;
|
|
869
|
+
/** @type {?|undefined} */
|
|
870
|
+
Address.prototype.postCode;
|
|
871
|
+
/** @type {?|undefined} */
|
|
872
|
+
Address.prototype.country;
|
|
873
|
+
}
|
|
874
|
+
/**
|
|
875
|
+
* @record
|
|
876
|
+
*/
|
|
877
|
+
export function PaymentDetails() { }
|
|
878
|
+
if (false) {
|
|
879
|
+
/** @type {?|undefined} */
|
|
880
|
+
PaymentDetails.prototype.cardNumber;
|
|
881
|
+
/** @type {?|undefined} */
|
|
882
|
+
PaymentDetails.prototype.sqNo;
|
|
883
|
+
/** @type {?|undefined} */
|
|
884
|
+
PaymentDetails.prototype.result;
|
|
885
|
+
/** @type {?} */
|
|
886
|
+
PaymentDetails.prototype.currency;
|
|
887
|
+
/** @type {?} */
|
|
888
|
+
PaymentDetails.prototype.amount;
|
|
889
|
+
/** @type {?|undefined} */
|
|
890
|
+
PaymentDetails.prototype.authcode;
|
|
891
|
+
/** @type {?|undefined} */
|
|
892
|
+
PaymentDetails.prototype.pan;
|
|
893
|
+
/** @type {?|undefined} */
|
|
894
|
+
PaymentDetails.prototype.cardType;
|
|
895
|
+
/** @type {?|undefined} */
|
|
896
|
+
PaymentDetails.prototype.transactionDate;
|
|
897
|
+
/** @type {?|undefined} */
|
|
898
|
+
PaymentDetails.prototype.mid;
|
|
899
|
+
/** @type {?|undefined} */
|
|
900
|
+
PaymentDetails.prototype.tid;
|
|
901
|
+
/** @type {?|undefined} */
|
|
902
|
+
PaymentDetails.prototype.cvm;
|
|
903
|
+
/** @type {?|undefined} */
|
|
904
|
+
PaymentDetails.prototype.hostReferenceId;
|
|
905
|
+
/** @type {?|undefined} */
|
|
906
|
+
PaymentDetails.prototype.aid;
|
|
907
|
+
/** @type {?|undefined} */
|
|
908
|
+
PaymentDetails.prototype.receiptNo;
|
|
909
|
+
/** @type {?|undefined} */
|
|
910
|
+
PaymentDetails.prototype.expirydate;
|
|
911
|
+
/** @type {?} */
|
|
912
|
+
PaymentDetails.prototype.transactionReference;
|
|
913
|
+
/** @type {?|undefined} */
|
|
914
|
+
PaymentDetails.prototype.applicationVersion;
|
|
915
|
+
/** @type {?|undefined} */
|
|
916
|
+
PaymentDetails.prototype.entryMethod;
|
|
917
|
+
/** @type {?} */
|
|
918
|
+
PaymentDetails.prototype.transactionType;
|
|
919
|
+
/** @type {?} */
|
|
920
|
+
PaymentDetails.prototype.totalamount;
|
|
921
|
+
/** @type {?|undefined} */
|
|
922
|
+
PaymentDetails.prototype.paymentType;
|
|
923
|
+
}
|
|
924
|
+
/**
|
|
925
|
+
* @record
|
|
926
|
+
*/
|
|
927
|
+
export function TaxBreakdown() { }
|
|
928
|
+
if (false) {
|
|
929
|
+
/** @type {?} */
|
|
930
|
+
TaxBreakdown.prototype.taxLines;
|
|
931
|
+
/** @type {?} */
|
|
932
|
+
TaxBreakdown.prototype.totalTaxableAmount;
|
|
933
|
+
}
|
|
934
|
+
/**
|
|
935
|
+
* @record
|
|
936
|
+
*/
|
|
937
|
+
export function TotalTaxSummary() { }
|
|
938
|
+
if (false) {
|
|
939
|
+
/** @type {?} */
|
|
940
|
+
TotalTaxSummary.prototype.VATCode;
|
|
941
|
+
/** @type {?} */
|
|
942
|
+
TotalTaxSummary.prototype.VAT;
|
|
943
|
+
/** @type {?} */
|
|
944
|
+
TotalTaxSummary.prototype.PreTaxSum;
|
|
945
|
+
/** @type {?} */
|
|
946
|
+
TotalTaxSummary.prototype.TaxSum;
|
|
947
|
+
/** @type {?} */
|
|
948
|
+
TotalTaxSummary.prototype.TXrateSum;
|
|
949
|
+
}
|
|
950
|
+
/**
|
|
951
|
+
* @record
|
|
952
|
+
*/
|
|
953
|
+
export function TaxLine() { }
|
|
954
|
+
if (false) {
|
|
955
|
+
/** @type {?} */
|
|
956
|
+
TaxLine.prototype.itemLineId;
|
|
957
|
+
/** @type {?} */
|
|
958
|
+
TaxLine.prototype.taxableAmount;
|
|
959
|
+
/** @type {?} */
|
|
960
|
+
TaxLine.prototype.taxLineTotal;
|
|
961
|
+
/** @type {?} */
|
|
962
|
+
TaxLine.prototype.VAT;
|
|
963
|
+
/** @type {?} */
|
|
964
|
+
TaxLine.prototype.VATCode;
|
|
965
|
+
/** @type {?} */
|
|
966
|
+
TaxLine.prototype.PreTax;
|
|
967
|
+
}
|
|
968
|
+
/** @enum {string} */
|
|
969
|
+
const DISCOUNTTYPE = {
|
|
970
|
+
PERCENT: "Percent",
|
|
971
|
+
AMOUNT: "AMOUNT",
|
|
972
|
+
};
|
|
973
|
+
export { DISCOUNTTYPE };
|
|
974
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFwcGVyLWxpYnJhcnkubW9kZWwuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AcG1jcmV0YWlsL21hcHBlci1saWJyYXJ5LyIsInNvdXJjZXMiOlsibGliL21hcHBlci1saWJyYXJ5Lm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7OztBQUVBLE1BQVksZ0JBQWdCO0lBQzFCLElBQUksUUFBUztJQUNiLE1BQU0sVUFBVztJQUNqQixXQUFXLGVBQWdCO0lBQzNCLGFBQWEsaUJBQWtCO0lBQy9CLElBQUksUUFBUztFQUNkOzs7OztBQUVELGtDQUtDOzs7SUFKQywyQ0FBNEI7O0lBQzVCLDRDQUE2Qjs7SUFDN0IscUNBQXNCOztJQUN0Qiw0Q0FBOEI7OztBQUdoQyxNQUFZLGdCQUFnQjtJQUMxQixRQUFRLEdBQUk7SUFDWixTQUFTLEdBQUk7SUFDYixrQkFBa0IsR0FBSTtFQUN2Qjs7Ozs7Ozs7QUFFRCxtQ0FpQkM7OztJQWhCQyxtQ0FBb0I7O0lBQ3BCLDRCQUFZOztJQUNaLGlDQUFpQjs7SUFDakIsc0NBQXVCOztJQUN2QixxQ0FBNEI7O0lBQzVCLHVDQUFnQzs7SUFDaEMsaUNBQW9COztJQUNwQix5Q0FBMEI7O0lBQzFCLGtEQUFtQzs7SUFDbkMsaUNBQW1COztJQUNuQixzQ0FBdUI7O0lBQ3ZCLHVDQUF3Qjs7SUFDeEIsa0RBQW1DOztJQUNuQyxrQ0FBb0I7O0lBQ3BCLCtCQUFpQjs7SUFDakIsd0NBQTBCOzs7Ozs7QUFNNUIsNkJBeUVDOzs7SUF4RUMsNkJBQW9COztJQUNwQix5QkFBZTs7SUFDZiwyQkFBaUI7O0lBQ2pCLHdCQUFjOztJQUNkLDJCQUFpQjs7SUFDakIsMkJBQWlCOztJQUNqQixrQ0FBd0I7O0lBQ3hCLDRCQUFrQjs7SUFDbEIsOEJBQW9COztJQUNwQix1QkFBYzs7SUFDZCw0QkFBb0I7O0lBQ3BCLG9DQUE0Qjs7SUFDNUIsdUJBQWE7O0lBQ2IsdUJBQWE7O0lBQ2IseUJBQWU7O0lBQ2YsK0JBQXFCOztJQUNyQiw0QkFBa0I7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O0lBQ2xCLHlDQUF5Qjs7SUFDekIsNkJBQWE7O0lBQ2IsNkJBQWE7O0lBQ2IsNkJBQWE7O0lBQ2IseUNBQXlCOztJQUN6Qiw2QkFBYTs7SUFDYixtQ0FBbUI7O0lBQ25CLG9DQUFvQjs7SUFDcEIsOENBQTZCOztJQUM3Qiw0Q0FBNEI7O0lBQzVCLHFDQUFvQjs7SUFDcEIseUNBQXVCOztJQUN2QixxQ0FBbUI7O0lBQ25CLHFDQUFvQjs7Ozs7QUFHdEIsa0NBSUM7OztJQUZDLGdDQUFxQjs7SUFDckIsMENBQTJCOzs7OztBQUc3QixxQ0FNQzs7O0lBTEMsa0NBQWU7O0lBQ2YsOEJBQWE7O0lBQ2Isb0NBQWtCOztJQUNsQixpQ0FBZTs7SUFDZixvQ0FBaUI7Ozs7O0FBR25CLDZCQVFDOzs7SUFORyw2QkFBbUI7O0lBQ25CLGdDQUFzQjs7SUFDdEIsK0JBQXFCOztJQUNyQixzQkFBWTs7SUFDWiwwQkFBaUI7O0lBQ2pCLHlCQUFjOzs7QUFHbEIsTUFBWSxZQUFZO0lBQ3RCLE9BQU8sV0FBWTtJQUNuQixNQUFNLFVBQVc7RUFDbEIiLCJzb3VyY2VzQ29udGVudCI6WyJcclxuXHJcbmV4cG9ydCBlbnVtIFRSQU5TQUNUSU9OX1RZUEUge1xyXG4gIFNBTEUgPSBcIlNBTEVcIixcclxuICBSRUZVTkQgPSBcIlJFRlVORFwiLFxyXG4gIFNBTEVfUkVGVU5EID0gXCJTQUxFX1JFRlVORFwiLFxyXG4gIFNBTEVfRVhDSEFOR0UgPSBcIlNBTEVfRVhDSEFOR0VcIixcclxuICBWT0lEID0gXCJWT0lEXCJcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBJdGVtRGlzY291bnQge1xyXG4gIHRybkRpc2NvdW50c1BvcnRpb246IG51bWJlcjtcclxuICB0cm5Qcm9tb3Rpb25zUG9ydGlvbjogbnVtYmVyO1xyXG4gIHJlZnVuZFBvcnRpb246IG51bWJlcjtcclxuICBjdXJyZW50UmVmdW5kUG9ydGlvbj86IG51bWJlcjtcclxufVxyXG5cclxuZXhwb3J0IGVudW0gREVMSVZFUllfTUVUSE9EUyB7XHJcbiAgREVMSVZFUlkgPSAxLFxyXG4gIERST1BfU0hJUCA9IDIsXHJcbiAgQ09MTEVDVF9GUk9NX1NUT1JFID0gMyxcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBQcm9kdWN0Q2hhbmdlIHtcclxuICBpdGVtTGluZUlkPzogbnVtYmVyO1xyXG4gIFNLVTogc3RyaW5nO1xyXG4gIHF1YW50aXR5OiBudW1iZXI7XHJcbiAgc2VsZWN0ZWRQcmljZT86IG51bWJlcjtcclxuICBsaW5lRGlzY291bnQ/OiBMaW5lRGlzY291bnQ7XHJcbiAgbGluZVByb21vdGlvbnM/OiBMaW5lUHJvbW90aW9ucztcclxuICBleGNoYW5nZT86IEV4Y2hhbmdlO1xyXG4gIHJlZnVuZGVkUXVhbnRpdHk/OiBudW1iZXI7ICAgICAgICAgICAgICAgICAgICAgICAgLy8gY29udGFpbnMgcXVhbnRpdHkgb2YgYm90aCBmdWxsIHByaWNlZCBhbmQgcHJvbW90aW9uYWwgcXVhbnRpdGllc1xyXG4gIHJlZnVuZFByb21vdGlvbmFsUXVhbnRpdHk/OiBudW1iZXI7ICAgICAgICAgICAgICAgLy8gcHJvbW90aW9uYWwgcXVhbnRpdHlcclxuICByZWZ1bmRlZD86IGJvb2xlYW47XHJcbiAgcmVmdW5kZWRUb3RhbD86IG51bWJlcjtcclxuICByZWZ1bmRlZFJlYXNvbj86IHN0cmluZztcclxuICByZWZ1bmRlZFJlYXNvbkRlc2NyaXB0aW9uPzogc3RyaW5nO1xyXG4gIGlzQ2hlY2tlZD86IGJvb2xlYW47XHJcbiAgc2VhbGVkPzogYm9vbGVhbjtcclxuICBpc0xhc3RFeGNoYW5nZWQ/OiBib29sZWFuO1xyXG59XHJcblxyXG4vKipcclxuICogUHJvZHVjdFxyXG4gKi9cclxuZXhwb3J0IGludGVyZmFjZSBQcm9kdWN0IGV4dGVuZHMgUHJvZHVjdENoYW5nZSB7XHJcbiAgaXRlbUxpbmVJZD86IG51bWJlcjtcclxuICBzdGF0dXM6IG51bWJlcjtcclxuICBzdWJHcm91cDogbnVtYmVyO1xyXG4gIGJyYW5kOiBzdHJpbmc7XHJcbiAgY3VycmVuY3k6IHN0cmluZztcclxuICBjYXRlZ29yeTogc3RyaW5nO1xyXG4gIGNvdW50cnlvZk9yaWdpbjogc3RyaW5nO1xyXG4gIHByb2R1Y3RJZDogc3RyaW5nO1xyXG4gIHByb2R1Y3RUeXBlOiBudW1iZXI7XHJcbiAgbmFtZT86IHN0cmluZztcclxuICBpbWFnZVVybHM6IFtzdHJpbmddO1xyXG4gIGlzSW1hZ2VGYWlsVG9Mb2FkPzogYm9vbGVhbjtcclxuICBzaXplOiBzdHJpbmc7XHJcbiAgdHlwZTogc3RyaW5nO1xyXG4gIHNlYXNvbjogbnVtYmVyO1xyXG4gIHByb2R1Y3RHcm91cDogbnVtYmVyO1xyXG4gIHN0eWxlQ29kZTogc3RyaW5nO1xyXG4gIG5vZGVTdHJ1Y3R1cmU6IE5vZGVTdHJ1Y3R1cmVbXTtcclxuICBiYXJjb2RlOiBzdHJpbmc7XHJcbiAgcHJpY2U6IFByaWNlW107XHJcbiAgY29sb3VyOiBzdHJpbmc7XHJcbiAgZGVzY3JpcHRpb246IHN0cmluZztcclxuICB0b3RhbExpbmVQcmljZTogbnVtYmVyO1xyXG4gIHRvdGFsOiBudW1iZXI7XHJcbiAgYWRkZWRJbkJhc2tldD86IGJvb2xlYW47XHJcbiAgc2VsZWN0ZWRWQVQ/OiBudW1iZXI7XHJcbiAgc2VsZWN0ZWRWQVRDb2RlPzogc3RyaW5nO1xyXG4gIHNlbGVjdGVkUlJQUHJpY2U/OiBudW1iZXI7XHJcbiAgbGluZURpc2NvdW50PzogTGluZURpc2NvdW50O1xyXG4gIGV4Y2hhbmdlPzogRXhjaGFuZ2U7XHJcbiAgLy8gcmVmdW5kZWRRdWFudGl0eT86IG51bWJlcjtcclxuICAvLyByZWZ1bmRlZD86IGJvb2xlYW47XHJcbiAgLy8gcmVmdW5kZWRUb3RhbD86IG51bWJlcjtcclxuICAvLyByZWZ1bmRlZFJlYXNvbkRlc2NyaXB0aW9uPzpzdHJpbmc7XHJcbiAgLy8gaXNDaGVja2VkPzpib29sZWFuO1xyXG4gIHJlZnVuZFByb21vdGlvbmFsUXVhbnRpdHk/OiBudW1iZXI7ICAgICAgICAgICAgICAgLy8gcHJvbW90aW9uYWwgcXVhbnRpdHlcclxuICBleGNoYW5nZVJlYXNvbj86IHN0cmluZztcclxuICBleGNoYW5nZVF1YW50aXR5PzogbnVtYmVyO1xyXG4gIGl0ZW1EaXNjb3VudHM6IEl0ZW1EaXNjb3VudDtcclxuXHJcbiAgZ2lmdENhcmROdW1iZXJJc3N1ZWQ/OiBzdHJpbmc7XHJcbiAgZ2lmdENhcmRBbW91bnQ/OiBudW1iZXI7XHJcbiAgZ2lmdENhcmRSZWNpcGllbnRFbWFpbD86IHN0cmluZztcclxuICBnaWZ0Q2FyZEV4cGlyeURhdGU/OiBzdHJpbmc7XHJcbiAgZ2lmdENhcmRSZWNpcGllbnROYW1lPzogc3RyaW5nO1xyXG4gIGdpZnRDYXJkPzogYm9vbGVhbjtcclxuXHJcbiAgZGlzY291bnRhYmxlOiBib29sZWFuO1xyXG4gIC8vIHNlYWxlZD86Ym9vbGVhbjtcclxuICBleGNsdWRlUHJvbW90aW9uOiBib29sZWFuO1xyXG4gIGNhdGVnb3JpZXM6IENhdGVnb3JpZXNbXTtcclxuICBkZXNjcmlwdGlvbnM6IERlc2NyaXB0aW9uc1tdO1xyXG4gIGJhcmNvZGVzOiBzdHJpbmdbXTtcclxuXHJcbiAgLy9OZXcgRmVpbGRzXHJcbiAgZXh0ZXJuYWxJZDogc3RyaW5nO1xyXG4gIGNyZWF0ZWREYXRlOiBzdHJpbmc7XHJcbiAgdXBkYXRlZERhdGU6IHN0cmluZztcclxuICBjcmVhdGVkQnk6IHN0cmluZztcclxuICB1cGRhdGVkQnk6IHN0cmluZztcclxuICBhdHRyaWJ1dGVzOiBDb3JlQXR0cmlidXRlW107XHJcbiAgaWQ6IHN0cmluZztcclxuICBsb25nX2Rlc2NyaXB0aW9uOiBzdHJpbmc7XHJcblxyXG4gIC8vIE1peGVkIFNhbGVzIGZpZWxkc1xyXG4gIGlzV2ViT3JkZXI/OiBib29sZWFuLFxyXG4gIGZ1bGxmaWxtZW50SWQ6IHN0cmluZyxcclxuICBmdWxsZmlsbWVudExvY2F0aW9uTmFtZT86IHN0cmluZyxcclxuICBkZWxpdmVyeU1ldGhvZD86IHN0cmluZyxcclxuICBkZWxpdmVyeUdyb3VwPzogc3RyaW5nLFxyXG4gIHNlbGVjdGVkSW52ZW50b3J5PzogSW52ZW50b3J5SW5mbztcclxuICBsZWFkVGltZT86IGxlYWRUaW1lXHJcbn1cclxuZXhwb3J0IGludGVyZmFjZSBsZWFkVGltZSB7XHJcbiAgdHlwZTogc3RyaW5nLFxyXG4gIHZhbHVlOiBzdHJpbmdcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBFeGNoYW5nZSB7XHJcbiAgZXhjaGFuZ2VJZDogbnVtYmVyLFxyXG4gIGxpbmVJdGVtSWQ6IG51bWJlcixcclxuICByZWFzb246IHN0cmluZyxcclxuICBxdWFudGl0eTogbnVtYmVyLFxyXG4gIG5ld0l0ZW1zOiBQcm9kdWN0W107XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgQ2F0ZWdvcmllcyB7XHJcbiAgaWQ6IHN0cmluZztcclxuICBwYXJlbnRJZDogc3RyaW5nO1xyXG4gIG5hbWU6IHN0cmluZztcclxuICBjYXRlZ29yeUlkOiBzdHJpbmc7XHJcbiAgc3RhdHVzOiBib29sZWFuO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIERlc2NyaXB0aW9ucyB7XHJcbiAgbmFtZTogc3RyaW5nO1xyXG4gIGNvdW50cnlDb2RlOiBzdHJpbmc7XHJcbiAgdmFsdWU6IHN0cmluZztcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBDb3JlQXR0cmlidXRlIHtcclxuICBuYW1lOiBzdHJpbmc7XHJcbiAgdmFsdWU6IHN0cmluZztcclxuICBzZWFyY2hhYmxlOiBib29sZWFuO1xyXG4gIGNvdW50cnlDb2RlOiBzdHJpbmc7XHJcbn1cclxuXHJcbi8qKlxyXG4gKiBCYXNrZXRcclxuICovXHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIEJhc2tldCB7XHJcbiAgc3Vic2lkaWFyeUlkPzogc3RyaW5nO1xyXG4gIHByb2R1Y3RzOiBQcm9kdWN0W107XHJcbiAgdHJhbnNhY3Rpb25EaXNjb3VudDogYW55W107XHJcbiAgcXVhbnRpdHk6IG51bWJlcjtcclxuICB0b3RhbDogbnVtYmVyO1xyXG4gIHNhbGVUb3RhbDogbnVtYmVyO1xyXG4gIGRpc2NvdW50VG90YWw/OiBudW1iZXI7XHJcbiAgdHJhbnNhY3Rpb25JZD86IHN0cmluZztcclxuICBvZmZsaW5lVHJhbnNhY3Rpb25JZD86IHN0cmluZztcclxuICBiYXNlQ3VycmVuY3k6IHN0cmluZztcclxuICBiYXNrZXRUb3RhbD86IG51bWJlcjtcclxuICByZWZ1bmRUb3RhbD86IG51bWJlcjtcclxuICB0cmFuc2FjdGlvblByb21vdGlvbj86IFRyYW5zYWN0aW9uUHJvbW90aW9uW107XHJcbiAgY3VzdG9tZXI/OiBhbnk7XHJcbiAgZXhjaGFuZ2U/OiBFeGNoYW5nZVtdO1xyXG4gIGluU3RvcmVGbGFnPzogYm9vbGVhblxyXG59XHJcblxyXG5cclxuXHJcbi8qKlxyXG4gKiBQcmljZVxyXG4gKi9cclxuZXhwb3J0IGludGVyZmFjZSBQcmljZSB7XHJcbiAgVkFUOiBudW1iZXI7XHJcbiAgVkFUQ29kZTogc3RyaW5nO1xyXG4gIHNhbGVzUHJpY2U6IG51bWJlcjtcclxuICBjdXJyZW5jeUNvZGU6IHN0cmluZztcclxuICBSUlBQcmljZTogbnVtYmVyO1xyXG59XHJcblxyXG4vKipcclxuICogTm9kZSBzdHJ1Y3R1cmVcclxuICovXHJcbmludGVyZmFjZSBOb2RlU3RydWN0dXJlIHtcclxuICBzdGF0dXM6IGJvb2xlYW47XHJcbiAgbmFtZTogc3RyaW5nO1xyXG4gIG5vZGVUeXBlOiBzdHJpbmc7XHJcbiAgaXNPdmVycmlkZTogYm9vbGVhbjtcclxuICBub2RlSWQ6IHN0cmluZztcclxuICBwYXJlbnRJZDogc3RyaW5nO1xyXG59XHJcblxyXG4vKipcclxuICogTGluZSBEaXNjb3VudFxyXG4gKi9cclxuZXhwb3J0IGludGVyZmFjZSBMaW5lRGlzY291bnQge1xyXG4gIGl0ZW1MaW5lSWQ6IHN0cmluZyxcclxuICBkaXNjb3VudEFtb3VudDogbnVtYmVyLFxyXG4gIGRpc2NvdW50VHlwZTogc3RyaW5nLFxyXG4gIC8vIHJlYXNvbkNvZGU6IHN0cmluZyxcclxuICBuYW1lPzogc3RyaW5nLFxyXG4gIHVuaXRQcmljZTogbnVtYmVyLFxyXG4gIGRpc2NvdW50ZWRMaW5lUHJpY2U/OiBudW1iZXIsXHJcbiAgcHJpY2VNYW5hZ2VyT3ZlcnJpZGU/OiBVc2VyT3ZlcnJpZGUsXHJcbiAgcHJpY2VPdmVycmlkZVJlYXNvbkNvZGU/OiBzdHJpbmcsXHJcbiAgcHJpY2VPdmVycmlkZVJlYXNvbk5hbWU/OiBzdHJpbmcsXHJcbiAgcHJpY2VPdmVycmlkZUFtb3VudD86IG51bWJlcixcclxuICBwZXJjZW50YWdlRGlzY291bnRNYW5hZ2VyT3ZlcnJpZGU/OiBVc2VyT3ZlcnJpZGUsXHJcbiAgcGVyY2VudGFnZURpc2NvdW50UmVhc29uQ29kZT86IHN0cmluZyxcclxuICBwZXJjZW50YWdlRGlzY291bnRSZWFzb25OYW1lPzogc3RyaW5nLFxyXG4gIHBlcmNlbnRhZ2VEaXNjb3VudFZhbHVlPzogbnVtYmVyXHJcbn1cclxuXHJcbi8qKlxyXG4gKiBVc2VyIE92ZXJyaWRlXHJcbiAqL1xyXG5leHBvcnQgaW50ZXJmYWNlIFVzZXJPdmVycmlkZSB7XHJcbiAgdXNlcklkOiBzdHJpbmcsXHJcbiAgYXV0b21hdGljQXBwcm92ZTogc3RyaW5nLFxyXG4gIG9yaWdpbmFsVXNlcklkOiBzdHJpbmdcclxufVxyXG5cclxuLyoqXHJcbiogbGluZSBQcm9tb3Rpb25zXHJcbiovXHJcbmV4cG9ydCBpbnRlcmZhY2UgTGluZVByb21vdGlvbnMge1xyXG5cclxuICB0cmlnZ2VyOiBUcmlnZ2VyW10sXHJcbiAgaXRlbUxpbmVJZDogbnVtYmVyLFxyXG4gIHByb21vdGlvbklkOiBzdHJpbmcsXHJcbiAgZGlzcGxheVRleHQ6IHN0cmluZyxcclxuICBwcm9tb3Rpb25UeXBlOiBzdHJpbmcsXHJcbiAgcHJvbW90aW9uQW1vdW50OiBudW1iZXIsXHJcbiAgbmFtZTogc3RyaW5nLFxyXG4gIHByb21vdGlvbkluZm86IHN0cmluZyxcclxuICBwcm9tb3Rpb25MaW5lUHJpY2U6IG51bWJlclxyXG4gIHJlZnVuZGVkPzogYm9vbGVhbjtcclxufVxyXG5cclxuLyoqXHJcbiogdHJpZ2dlclxyXG4qL1xyXG5leHBvcnQgaW50ZXJmYWNlIFRyaWdnZXIge1xyXG4gIGl0ZW1MaW5lSWQ6IHN0cmluZztcclxuICBxdWFudGl0eT86IG51bWJlcjtcclxuICB0b3RhbFF1YW50aXR5PzogbnVtYmVyO1xyXG59XHJcblxyXG4vKipcclxuKiBUcmFuc2FjdGlvbiBQcm9tb3Rpb25cclxuKi9cclxuZXhwb3J0IGludGVyZmFjZSBUcmFuc2FjdGlvblByb21vdGlvbiB7XHJcbiAgZGlzcGxheVRleHQ6IHN0cmluZztcclxuICBuYW1lOiBzdHJpbmc7XHJcbiAgcHJvbW90aW9uQW1vdW50OiBudW1iZXI7XHJcbiAgcHJvbW90aW9uSWQ6IHN0cmluZztcclxuICBwcm9tb3Rpb25JbmZvOiBzdHJpbmc7XHJcbiAgcHJvbW90aW9uVHlwZTogc3RyaW5nO1xyXG4gIGl0ZW1MaW5lSWRzOiBudW1iZXJbXTtcclxuXHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgUmVmdW5kUHJvZHVjdENoYW5nZSB7XHJcbiAgaXRlbUxpbmVJZD86IG51bWJlcjtcclxuICByZWZ1bmRlZFF1YW50aXR5PzogbnVtYmVyO1xyXG4gIHJlZnVuZGVkUHJvbW90aW9uYWxRdWFudGl0eT86IG51bWJlcjtcclxuICByZWZ1bmRUb3RhbD86IG51bWJlcjtcclxuICByZWZ1bmRlZFJlYXNvbj86IHN0cmluZztcclxuICByZWZ1bmRlZFJlYXNvbkRlc2NyaXB0aW9uPzogc3RyaW5nO1xyXG4gIHJlZnVuZFdpdGhQcm9tb3Rpb246IGJvb2xlYW47XHJcbiAgaXNMYXN0RXhjaGFuZ2VkPzogYm9vbGVhbjtcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBJbnZlbnRvcnlJbmZvIHtcclxuICBzdG9yZU5hbWU6IHN0cmluZyxcclxuICBzdG9yZUlkOiBzdHJpbmcsXHJcbiAgcXVhbnRpdHlBdmFpbGFibGU6IG51bWJlcixcclxuICBxdWFudGl0eVJlcXVpcmVkOiBudW1iZXJcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBJbnZlbnRvcnlSZXF1ZXN0SW5mbyBleHRlbmRzIEludmVudG9yeUluZm8ge1xyXG4gIHJlcXVlc3RlZFF1YW50aXR5OiBudW1iZXIsXHJcbiAgcmVxdWVzdGVkQWN0aW9uOiBERUxJVkVSWV9NRVRIT0RTXHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgRGVsaXZlcnlJbmZvIHtcclxuICBncm91cHM6IERlbGl2ZXJ5R3JvdXBJbmZvW11cclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBEZWxpdmVyeUdyb3VwSW5mbyB7XHJcbiAgZ3JvdXBOdW1iZXI6IG51bWJlcjtcclxuICBpdGVtczogUHJvZHVjdFtdO1xyXG4gIGVzdGltYXRlPzogRXN0aW1hdGU7XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgRXN0aW1hdGUge1xyXG4gIHR5cGU6IHN0cmluZyxcclxuICB2YWx1ZTogc3RyaW5nXHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgVHJhbnNhY3Rpb25Eb2N1bWVudCB7XHJcbiAgdHJhbnNhY3Rpb25JZD86IHN0cmluZztcclxuICBzdWJzaWRpYXJ5SWQ/OiBzdHJpbmc7XHJcbiAgb2ZmbGluZVRyYW5zYWN0aW9uSWQ/OnN0cmluZztcclxuICB0cmFuc2FjdGlvblJlZj86IHN0cmluZztcclxuICBkYXRlVGltZT86IHN0cmluZztcclxuICBvcmdDb2RlOiBzdHJpbmc7XHJcbiAgc3RvcmVJZDogc3RyaW5nO1xyXG4gIHN0b3JlTm9kZUlkOnN0cmluZztcclxuICBzdG9yZU5vZGVTdHJ1Y3R1cmU6c3RyaW5nO1xyXG4gIGRldmljZUlkOiBzdHJpbmc7XHJcbiAgdGVybWluYWxJZDpzdHJpbmc7XHJcbiAgaW5pdGlhdGluZ01vZHVsZSA6c3RyaW5nO1xyXG4gIGV4cG9ydDpib29sZWFuO1xyXG4gIHVzZXJJZD86IHN0cmluZztcclxuICB1c2VyTmFtZT86c3RyaW5nO1xyXG4gIGN1c3RvbWVyPzogQ3VzdG9tZXI7XHJcbiAgYmFza2V0OiBhbnk7XHJcbiAgYmFza2V0U3VtbWFyeTogYW55O1xyXG4gIC8vIGxpbmVEaXNjb3VudDogTGluZURpc2NvdW50W107XHJcbiAgYmFzZUN1cnJlbmN5OiBzdHJpbmc7XHJcbiAgc3BsaXRQYXltZW50Pzpib29sZWFuO1xyXG4gIGlzUGF5bWVudENvbXBsZXRlZD86Ym9vbGVhbjtcclxuICBwYXltZW50RGV0YWlscz86IGFueTtcclxuICB0eXBlPzogc3RyaW5nO1xyXG4gIG9wZXJhdGlvblN0YXR1cz86IHN0cmluZztcclxuICBjcmVhdGVkQXQ/OiBzdHJpbmc7XHJcbiAgdXBkYXRlZEF0Pzogc3RyaW5nO1xyXG4gIHRyYW5zQ29tcGxldGVkQXQ/OiBzdHJpbmc7XHJcbiAgaWQ/OiBzdHJpbmc7XHJcbiAgc2FsZVRvdGFsPzogbnVtYmVyO1xyXG4gIHJlYXNvbkNvZGU/OiBzdHJpbmc7XHJcbiAgcmVhc29uRGVzY3JpcHRpb24/OiBzdHJpbmc7XHJcbiAgb3ZlcnJpZGU/OiBVc2VyT3ZlcnJpZGU7XHJcbiAgb3JpZ2luYWxUcmFuc0lkPzpzdHJpbmc7XHJcbiAgb3JpZ2luYWxFeHRlcm5hbElkPzogc3RyaW5nO1xyXG4gIGFwaVJlc3BvbnNlPzogQVBJUmVzcG9uc2U7ICAgIC8vIFRPRE8gYWRkIGhhbmRsZXIgYXMgcGVyIGV4cG9ydCBwcm92aWRlclxyXG4gIHVucmVmZXJlbmNlZFJlZnVuZD86Ym9vbGVhbjtcclxuICBnaWZ0ZWRSZWNlaXB0Pzpib29sZWFuO1xyXG4gIGN1cnJlbnRUcmFuc2FjdGlvbkRldGFpbHM/OmFueTtcclxuICBpc0NoZWNrZWQ/OmJvb2xlYW47XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgQVBJUmVzcG9uc2Vcclxue1xyXG4gIGludGVybmFsSWQ/Om51bWJlcjtcclxuICB0cmFuaWQ/OnN0cmluZ1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIEN1cnJlbnRUcmFuc2FjdGlvbkRldGFpbHN7XHJcbiAgcHJvZHVjdHM6IFByb2R1Y3RbXTtcclxuICBsaW5lRGlzY291bnQ/OkxpbmVEaXNjb3VudFtdO1xyXG4gIGxpbmVQcm9tb3Rpb24/OkxpbmVQcm9tb3Rpb25zW107XHJcbiAgdHJhbnNhY3Rpb25Qcm9tb3Rpb24/OlRyYW5zYWN0aW9uUHJvbW90aW9uW107XHJcbiAgdHJhbnNhY3Rpb25EaXNjb3VudD86VHJhbnNhY3Rpb25EaXNjb3VudFtdO1xyXG4gIGJhc2tldFN1bW1hcnk/OkJhc2tldFN1bW1hcnk7ICBcclxuICB0YXhCcmVha2Rvd24/OlRheEJyZWFrZG93bjsgIFxyXG4gIHRvdGFsVGF4U3VtbWFyeT86VG90YWxUYXhTdW1tYXJ5W107XHJcbn1cclxuZXhwb3J0IGludGVyZmFjZSBCYXNrZXRTdW1tYXJ5IHtcclxuICB0b3RhbEl0ZW1zOiBudW1iZXI7XHJcbiAgc2FsZVRvdGFsOiBudW1iZXI7XHJcbiAgVkFUVG90YWw6IG51bWJlcjtcclxuICBkaXNjb3VudFRvdGFsOiBudW1iZXI7XHJcbiAgYmFza2V0VG90YWw6IG51bWJlcjtcclxuICByZWZ1bmRUb3RhbD86bnVtYmVyO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFRyYW5zYWN0aW9uRGlzY291bnR7XHJcbiAgZGlzY291bnRBbW91bnQ6bnVtYmVyO1xyXG4gIGRpc2NvdW50VHlwZTpTdHJpbmc7XHJcbiAgcmVhc29uQ29kZTpzdHJpbmc7XHJcbiAgb3ZlcnJpZGU/OiBVc2VyT3ZlcnJpZGU7XHJcbiAgaXRlbUxpbmVJZHM/Om51bWJlcltdO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFRCYXNrZXQge1xyXG4gIHByb2R1Y3RzOiBUUHJvZHVjdFtdO1xyXG4gIGxpbmVEaXNjb3VudDpMaW5lRGlzY291bnRbXTtcclxuICBleGNoYW5nZTpFeGNoYW5nZVtdO1xyXG4gIGxpbmVQcm9tb3Rpb246TGluZVByb21vdGlvbnNbXTtcclxuICB0cmFuc2FjdGlvblByb21vdGlvbj86VHJhbnNhY3Rpb25Qcm9tb3Rpb25bXTtcclxuICB0cmFuc2FjdGlvbkRpc2NvdW50PzpUcmFuc2FjdGlvbkRpc2NvdW50W107XHJcbiAgdGF4QnJlYWtkb3duPzpUYXhCcmVha2Rvd247XHJcbiAgdG90YWxUYXhTdW1tYXJ5PzpUb3RhbFRheFN1bW1hcnlbXTtcclxuXHJcbiAgXHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgVEV4Y2hhbmdle1xyXG4gIGV4Y2hhbmdlSWQ/Om51bWJlcixcclxuICBsaW5lSXRlbUlkPzogbnVtYmVyLFxyXG4gIHJlYXNvbj86IHN0cmluZyxcclxuICBxdWFudGl0eT86IG51bWJlcixcclxuICBuZXdJdGVtcz86VE5ld0l0ZW1zW107XHJcbiAgfVxyXG4gIFxyXG4gIGV4cG9ydCBpbnRlcmZhY2UgVE5ld0l0ZW1ze1xyXG4gIGxpbmVJdGVtSWQ6bnVtYmVyLFxyXG4gICBRdWFudGl0eTpudW1iZXJcclxuICB9XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFRQcm9kdWN0IHtcclxuICBpdGVtTGluZUlkOiBzdHJpbmc7XHJcbiAgU0tVOiBzdHJpbmc7XHJcbiAgZGVzY3JpcHRpb246IHN0cmluZztcclxuICBpbWFnZVVybHM6IFtzdHJpbmddO1xyXG4gIHByaWNlOiBudW1iZXI7XHJcbiAgdGF4Q29kZT86IHN0cmluZztcclxuICB0YXhQZXJjZW50Pzogc3RyaW5nO1xyXG4gIHF1YW50aXR5OiBudW1iZXI7XHJcbiAgcmVmdW5kZWRRdWFudGl0eT86IG51bWJlcjtcclxuICByZWZ1bmRlZFByb21vdGlvbmFsUXVhbnRpdHk/Om51bWJlcjtcclxuICByZWZ1bmRlZD86IGJvb2xlYW47XHJcbiAgcmVmdW5kZWRUb3RhbD86IG51bWJlcjtcclxuICByZWZ1bmRlZFJlYXNvbj86c3RyaW5nO1xyXG4gIHJlZnVuZGVkUmVhc29uRGVzY3JpcHRpb24/OnN0cmluZztcclxuICBzZWxlY3RlZFJSUFByaWNlPzogbnVtYmVyO1xyXG4gIHRvdGFsTGluZVByaWNlOiBudW1iZXI7XHJcbiAgYmFyQ29kZT86IHN0cmluZztcclxuICBiYXJjb2Rlcz86IHN0cmluZ1tdO1xyXG4gIGZsYWdnZWQ/OiBib29sZWFuO1xyXG4gIGV4Y2hhbmdlPzpFeGNoYW5nZTtcclxuICBleGNsdWRlUHJvbW90aW9uOmJvb2xlYW47XHJcbiAgZGlzY291bnRhYmxlPzpib29sZWFuO1xyXG5cclxuICBpdGVtRGlzY291bnRzPzpJdGVtRGlzY291bnRzO1xyXG4gIGlzTGFzdEV4Y2hhbmdlZD86IGJvb2xlYW47XHJcblxyXG4gIC8vIE1peGVkIFNhbGVzIGZpZWxkc1xyXG4gIGZ1bGxmaWxtZW50SWQ6c3RyaW5nLFxyXG4gIGZ1bGxmaWxtZW50TG9jYXRpb25OYW1lOnN0cmluZyxcclxuICBkZWxpdmVyeU1ldGhvZD86c3RyaW5nLFxyXG4gIGRlbGl2ZXJ5R3JvdXA/OnN0cmluZyxcclxuICBnaWZ0Q2FyZE51bWJlcklzc3VlZD86IHN0cmluZyxcclxuICBnaWZ0Q2FyZEFtb3VudD86IG51bWJlcixcclxuICBnaWZ0Q2FyZFJlY2lwaWVudEVtYWlsPzogc3RyaW5nLFxyXG4gIGdpZnRDYXJkRXhwaXJ5RGF0ZT86IHN0cmluZyAsXHJcbiAgZ2lmdENhcmRSZWNpcGllbnROYW1lPzogc3RyaW5nLFxyXG4gIGdpZnRDYXJkPzpib29sZWFuLFxyXG4gIGN1cnJlbmN5PzpzdHJpbmcsXHJcbiAgaXNXZWJPcmRlcj86Ym9vbGVhbixcclxuICBsZWFkVGltZT86IGxlYWRUaW1lXHJcbiAgXHJcbiAgLy8gY3VycmVudHRyYW5zYWN0aW9uIGRvYyBjaGFuZ2VzXHJcbiAgbGluZURpc2NvdW50PzphbnlcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBJdGVtRGlzY291bnRze1xyXG4gIHRybkRpc2NvdW50c1BvcnRpb246bnVtYmVyO1xyXG4gIHRyblByb21vdGlvbnNQb3J0aW9uOm51bWJlcjtcclxuICByZWZ1bmRQb3J0aW9uOm51bWJlcjtcclxufVxyXG5cclxuXHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIEN1c3RvbWVyIHtcclxuICBpZDogc3RyaW5nO1xyXG4gIHRpdGxlPzogc3RyaW5nO1xyXG4gIGZpcnN0TmFtZTogc3RyaW5nO1xyXG4gIGxhc3ROYW1lOiBzdHJpbmc7XHJcbiAgZW1haWw6IHN0cmluZztcclxuICBwb3N0Q29kZTogc3RyaW5nO1xyXG4gIHRlbGVwaG9uZT86IHN0cmluZztcclxuICBiaWxsaW5nQWRkcmVzcz86IEFkZHJlc3M7XHJcbiAgc2hpcHBpbmdBZGRyZXNzPzogQWRkcmVzcztcclxuICBhZGRyZXNzRGV0YWlsPzogc3RyaW5nO1xyXG4gIG5vQ3VzdG9tZXJTZWxlY3RlZD86IGJvb2xlYW47XHJcbiAgZXh0ZXJuYWxJZD86IHN0cmluZzsgXHJcbiBcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBBZGRyZXNzIFxyXG57XHJcbiAgYWRkcmVzczE/OiBzdHJpbmc7XHJcbiAgYWRkcmVzczI/OiBzdHJpbmc7XHJcbiAgYWRkcmVzczM/OiBzdHJpbmc7XHJcbiAgY2l0eT86IHN0cmluZztcclxuICBjb3VudHk/OiBzdHJpbmc7XHJcbiAgcG9zdENvZGU/OiBzdHJpbmc7XHJcbiAgY291bnRyeT86IHN0cmluZztcclxuIH1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgUGF5bWVudERldGFpbHMge1xyXG4gIGNhcmROdW1iZXI/OiBhbnk7XHJcbiAgc3FObz86bnVtYmVyO1xyXG4gIHJlc3VsdD86IHN0cmluZztcclxuICBjdXJyZW5jeTogc3RyaW5nO1xyXG4gIGFtb3VudDogc3RyaW5nO1xyXG4gIGF1dGhjb2RlPzogc3RyaW5nO1xyXG4gIHBhbj86IHN0cmluZztcclxuICBjYXJkVHlwZT86IHN0cmluZztcclxuICB0cmFuc2FjdGlvbkRhdGU/OiBzdHJpbmc7XHJcbiAgbWlkPzogc3RyaW5nO1xyXG4gIHRpZD86IHN0cmluZztcclxuICBjdm0/OiBzdHJpbmc7XHJcbiAgaG9zdFJlZmVyZW5jZUlkPzogc3RyaW5nO1xyXG4gIGFpZD86IHN0cmluZztcclxuICByZWNlaXB0Tm8/OiBzdHJpbmc7XHJcbiAgZXhwaXJ5ZGF0ZT86IHN0cmluZztcclxuICB0cmFuc2FjdGlvblJlZmVyZW5jZTogc3RyaW5nO1xyXG4gIGFwcGxpY2F0aW9uVmVyc2lvbj86IHN0cmluZztcclxuICBlbnRyeU1ldGhvZD86c3RyaW5nO1xyXG4gIHRyYW5zYWN0aW9uVHlwZTpzdHJpbmc7XHJcbiAgdG90YWxhbW91bnQ6c3RyaW5nO1xyXG4gIHBheW1lbnRUeXBlPzpzdHJpbmc7XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgVGF4QnJlYWtkb3duXHJcbntcclxuICB0YXhMaW5lcyA6IFRheExpbmVbXSxcclxuICB0b3RhbFRheGFibGVBbW91bnQ6IG51bWJlcjtcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBUb3RhbFRheFN1bW1hcnl7XHJcbiAgVkFUQ29kZTpzdHJpbmcsXHJcbiAgVkFUIDogbnVtYmVyO1xyXG4gIFByZVRheFN1bTogIG51bWJlclxyXG4gIFRheFN1bTogIG51bWJlclxyXG4gIFRYcmF0ZVN1bTogbnVtYmVyXHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgVGF4TGluZVxyXG57XHJcbiAgICBpdGVtTGluZUlkOiBudW1iZXIsXHJcbiAgICB0YXhhYmxlQW1vdW50OiBudW1iZXIsXHJcbiAgICB0YXhMaW5lVG90YWw6IG51bWJlcixcclxuICAgIFZBVDogbnVtYmVyLFxyXG4gICAgVkFUQ29kZSA6IHN0cmluZyxcclxuICAgIFByZVRheDogbnVtYmVyXHJcbn1cclxuXHJcbmV4cG9ydCBlbnVtIERJU0NPVU5UVFlQRSB7XHJcbiAgUEVSQ0VOVCA9ICdQZXJjZW50JyxcclxuICBBTU9VTlQgPSAnQU1PVU5UJ1xyXG59Il19
|