@plentymarkets/shop-api 0.112.0 → 0.114.0
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/lib/__tests__/__fixtures__/CategoryEntry.d.ts +4 -0
- package/lib/__tests__/__fixtures__/CategoryEntry.d.ts.map +1 -0
- package/lib/api/doHandleAllowPaymentApplePay/index.d.ts +1 -2
- package/lib/api/doHandleAllowPaymentApplePay/index.d.ts.map +1 -1
- package/lib/api/doHandlePayPalPaymentFundingSources/index.d.ts +18 -0
- package/lib/api/doHandlePayPalPaymentFundingSources/index.d.ts.map +1 -0
- package/lib/api/index.d.ts +2 -0
- package/lib/api/index.d.ts.map +1 -1
- package/lib/api/paypalModule/doCapturePayPalOrderV2/index.d.ts +18 -0
- package/lib/api/paypalModule/doCapturePayPalOrderV2/index.d.ts.map +1 -0
- package/lib/api/paypalModule/doCreatePayPalOrder/index.d.ts +18 -0
- package/lib/api/paypalModule/doCreatePayPalOrder/index.d.ts.map +1 -0
- package/lib/api/paypalModule/doCreatePlentyPaymentFromPayPalOrder/index.d.ts +18 -0
- package/lib/api/paypalModule/doCreatePlentyPaymentFromPayPalOrder/index.d.ts.map +1 -0
- package/lib/api/paypalModule/getPayPalFraudId/index.d.ts +18 -0
- package/lib/api/paypalModule/getPayPalFraudId/index.d.ts.map +1 -0
- package/lib/api/paypalModule/getPayPalOrder/index.d.ts +18 -0
- package/lib/api/paypalModule/getPayPalOrder/index.d.ts.map +1 -0
- package/lib/api/paypalModule/index.d.ts +6 -0
- package/lib/api/paypalModule/index.d.ts.map +1 -0
- package/lib/getters/__tests__/unit/barcodeGetters.unit.spec.d.ts +2 -0
- package/lib/getters/__tests__/unit/barcodeGetters.unit.spec.d.ts.map +1 -0
- package/lib/getters/__tests__/unit/categoryEntryGetters.unit.spec.d.ts +2 -0
- package/lib/getters/__tests__/unit/categoryEntryGetters.unit.spec.d.ts.map +1 -0
- package/lib/getters/barcodeGetters.d.ts +19 -0
- package/lib/getters/barcodeGetters.d.ts.map +1 -0
- package/lib/getters/categoryEntryGetters.d.ts +35 -0
- package/lib/getters/categoryEntryGetters.d.ts.map +1 -0
- package/lib/getters/index.d.ts +2 -0
- package/lib/getters/index.d.ts.map +1 -1
- package/lib/getters/productGetters.d.ts +3 -1
- package/lib/getters/productGetters.d.ts.map +1 -1
- package/lib/index.cjs.js +283 -37
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.es.js +275 -37
- package/lib/index.es.js.map +1 -1
- package/lib/types/api/paypal.d.ts +35 -2
- package/lib/types/api/paypal.d.ts.map +1 -1
- package/lib/types/api/product.d.ts +11 -0
- package/lib/types/api/product.d.ts.map +1 -1
- package/package.json +2 -2
- package/server/__tests__/__fixtures__/CategoryEntry.d.ts +4 -0
- package/server/__tests__/__fixtures__/CategoryEntry.d.ts.map +1 -0
- package/server/api/doHandleAllowPaymentApplePay/index.d.ts +1 -2
- package/server/api/doHandleAllowPaymentApplePay/index.d.ts.map +1 -1
- package/server/api/doHandlePayPalPaymentFundingSources/index.d.ts +18 -0
- package/server/api/doHandlePayPalPaymentFundingSources/index.d.ts.map +1 -0
- package/server/api/index.d.ts +2 -0
- package/server/api/index.d.ts.map +1 -1
- package/server/api/paypalModule/doCapturePayPalOrderV2/index.d.ts +18 -0
- package/server/api/paypalModule/doCapturePayPalOrderV2/index.d.ts.map +1 -0
- package/server/api/paypalModule/doCreatePayPalOrder/index.d.ts +18 -0
- package/server/api/paypalModule/doCreatePayPalOrder/index.d.ts.map +1 -0
- package/server/api/paypalModule/doCreatePlentyPaymentFromPayPalOrder/index.d.ts +18 -0
- package/server/api/paypalModule/doCreatePlentyPaymentFromPayPalOrder/index.d.ts.map +1 -0
- package/server/api/paypalModule/getPayPalFraudId/index.d.ts +18 -0
- package/server/api/paypalModule/getPayPalFraudId/index.d.ts.map +1 -0
- package/server/api/paypalModule/getPayPalOrder/index.d.ts +18 -0
- package/server/api/paypalModule/getPayPalOrder/index.d.ts.map +1 -0
- package/server/api/paypalModule/index.d.ts +6 -0
- package/server/api/paypalModule/index.d.ts.map +1 -0
- package/server/getters/__tests__/unit/barcodeGetters.unit.spec.d.ts +2 -0
- package/server/getters/__tests__/unit/barcodeGetters.unit.spec.d.ts.map +1 -0
- package/server/getters/__tests__/unit/categoryEntryGetters.unit.spec.d.ts +2 -0
- package/server/getters/__tests__/unit/categoryEntryGetters.unit.spec.d.ts.map +1 -0
- package/server/getters/barcodeGetters.d.ts +19 -0
- package/server/getters/barcodeGetters.d.ts.map +1 -0
- package/server/getters/categoryEntryGetters.d.ts +35 -0
- package/server/getters/categoryEntryGetters.d.ts.map +1 -0
- package/server/getters/index.d.ts +2 -0
- package/server/getters/index.d.ts.map +1 -1
- package/server/getters/productGetters.d.ts +3 -1
- package/server/getters/productGetters.d.ts.map +1 -1
- package/server/index.js +147 -1
- package/server/index.js.map +1 -1
- package/server/types/api/paypal.d.ts +35 -2
- package/server/types/api/paypal.d.ts.map +1 -1
- package/server/types/api/product.d.ts +11 -0
- package/server/types/api/product.d.ts.map +1 -1
package/lib/index.cjs.js
CHANGED
@@ -2423,7 +2423,7 @@ const setCategoryTemplate = async (context, params) => {
|
|
2423
2423
|
* const { data, error } = await useAsyncData(() => sdk.plentysystems.getRobots());
|
2424
2424
|
* ```
|
2425
2425
|
*/
|
2426
|
-
const getRobots$
|
2426
|
+
const getRobots$2 = async (context) => {
|
2427
2427
|
const url = new URL('/rest/storefront/seo/robots', context.config.api.url);
|
2428
2428
|
const { data: response } = await context.client.get(url.href);
|
2429
2429
|
return { data: response.data };
|
@@ -2903,6 +2903,146 @@ const getPackstations = async (context, params) => {
|
|
2903
2903
|
};
|
2904
2904
|
};
|
2905
2905
|
|
2906
|
+
/**
|
2907
|
+
* Method doHandlePayPalPaymentFundingSources - Used to update the availability for PayPal APMs.
|
2908
|
+
*
|
2909
|
+
* @remarks
|
2910
|
+
* * Calls /rest/payment/payPal/smart_payment/handle_founding_sources
|
2911
|
+
* * Used to update the availability for PayPal APMs.
|
2912
|
+
*
|
2913
|
+
* @example
|
2914
|
+
* ``` ts
|
2915
|
+
* const { data } = await useSdk().plentysystems.doHandlePayPalPaymentFoundingSources({
|
2916
|
+
* availableFoundingSources: Object.fromEntries(availableFoundingSources),
|
2917
|
+
* });
|
2918
|
+
* ```
|
2919
|
+
* @param params PayPalAllowApplePayRequest
|
2920
|
+
*/
|
2921
|
+
const doHandlePayPalPaymentFundingSources = async (context, params) => {
|
2922
|
+
const url = new URL('/rest/payment/payPal/smart_payment/handle_founding_sources', context.config.api.url);
|
2923
|
+
const { data } = await context.client.post(url.href, params);
|
2924
|
+
return { data: data };
|
2925
|
+
};
|
2926
|
+
|
2927
|
+
/**
|
2928
|
+
* Method doCreatePayPalOrder - Used to create a PayPal order.
|
2929
|
+
*
|
2930
|
+
* @remarks
|
2931
|
+
* * Calls /rest/paypal/create/{type}
|
2932
|
+
* * Method should be used to create a PayPal order.
|
2933
|
+
*
|
2934
|
+
* @returns
|
2935
|
+
*
|
2936
|
+
* @example
|
2937
|
+
* ``` ts
|
2938
|
+
* const { data } = await useSdk().plentysystems.doCreatePayPalOrder({ type: 'basket' });
|
2939
|
+
* ```
|
2940
|
+
*/
|
2941
|
+
const doCreatePayPalOrder = async (context, params) => {
|
2942
|
+
let path = '/rest/paypal/create';
|
2943
|
+
if (params.type === 'basket') {
|
2944
|
+
path += '/basket';
|
2945
|
+
}
|
2946
|
+
else if (params.type === 'express') {
|
2947
|
+
path += '/express';
|
2948
|
+
}
|
2949
|
+
else if (params.type === 'order') {
|
2950
|
+
if (params.plentyOrderId) {
|
2951
|
+
path += '/order/' + params.plentyOrderId;
|
2952
|
+
}
|
2953
|
+
else {
|
2954
|
+
throw new Error('plentyOrderId is required for type "order"');
|
2955
|
+
}
|
2956
|
+
}
|
2957
|
+
const url = new URL(path, context.config.api.url);
|
2958
|
+
const { data: response } = await context.client.post(url.href, {
|
2959
|
+
additionalInformation: params.additionalInformation,
|
2960
|
+
});
|
2961
|
+
return { data: response?.result };
|
2962
|
+
};
|
2963
|
+
|
2964
|
+
/**
|
2965
|
+
* Method doCreatePlentyPaymentFromPayPalOrder - Used to create a plenty payment from a PayPal order.
|
2966
|
+
*
|
2967
|
+
* @remarks
|
2968
|
+
* * Calls /rest/paypal/map/payment/:plentyOrderId
|
2969
|
+
* * Method should be used to create a plenty payment from a PayPal order.
|
2970
|
+
*
|
2971
|
+
* @returns
|
2972
|
+
*
|
2973
|
+
* @example
|
2974
|
+
* ``` ts
|
2975
|
+
* const { data } = await useSdk().plentysystems.doCreatePlentyPaymentFromPayPalOrder({ plentyOrderId: 1234 });
|
2976
|
+
* ```
|
2977
|
+
*/
|
2978
|
+
const doCreatePlentyPaymentFromPayPalOrder = async (context, params) => {
|
2979
|
+
const url = new URL('/rest/paypal/map/payment/' + params.payPalOrderId, context.config.api.url);
|
2980
|
+
const { data: response } = await context.client.post(url.href, {
|
2981
|
+
orderId: params.plentyOrderId,
|
2982
|
+
});
|
2983
|
+
return { data: response };
|
2984
|
+
};
|
2985
|
+
|
2986
|
+
/**
|
2987
|
+
* Method getPayPalOrder - Used to get a PayPal order.
|
2988
|
+
*
|
2989
|
+
* @remarks
|
2990
|
+
* * Calls /rest/paypal/order/get/:paypalOrderId
|
2991
|
+
* * Method should be used to get a PayPal order.
|
2992
|
+
*
|
2993
|
+
* @returns
|
2994
|
+
*
|
2995
|
+
* @example
|
2996
|
+
* ``` ts
|
2997
|
+
* const { data } = await useSdk().plentysystems.getPayPalOrder({ paypalOrderId: 'paypal-123' });
|
2998
|
+
* ```
|
2999
|
+
*/
|
3000
|
+
const getPayPalOrder = async (context, params) => {
|
3001
|
+
const url = new URL('/rest/paypal/get/order/' + params.paypalOrderId, context.config.api.url);
|
3002
|
+
const { data: response } = await context.client.get(url.href);
|
3003
|
+
return { data: response };
|
3004
|
+
};
|
3005
|
+
|
3006
|
+
/**
|
3007
|
+
* Method doCapturePayPalOrderV2 - Used to get a capture a PayPal order.
|
3008
|
+
*
|
3009
|
+
* @remarks
|
3010
|
+
* * Calls /rest/paypal/capture/order/:paypalOrderId
|
3011
|
+
* * Method should be used to capture a PayPal order.
|
3012
|
+
*
|
3013
|
+
* @returns
|
3014
|
+
*
|
3015
|
+
* @example
|
3016
|
+
* ``` ts
|
3017
|
+
* const { data } = await useSdk().plentysystems.doCapturePayPalOrderV2({ paypalOrderId: 'paypal-123' });
|
3018
|
+
* ```
|
3019
|
+
*/
|
3020
|
+
const doCapturePayPalOrderV2 = async (context, params) => {
|
3021
|
+
const url = new URL('/rest/paypal/capture/order/' + params.paypalOrderId, context.config.api.url);
|
3022
|
+
const { data: response } = await context.client.post(url.href);
|
3023
|
+
return { data: response };
|
3024
|
+
};
|
3025
|
+
|
3026
|
+
/**
|
3027
|
+
* Method getPayPalFraudId - Used to get the PayPal fraud id.
|
3028
|
+
*
|
3029
|
+
* @remarks
|
3030
|
+
* * Calls /rest/paypal/fraud_id
|
3031
|
+
* * Method should be used to get the PayPal fraud id.
|
3032
|
+
*
|
3033
|
+
* @returns
|
3034
|
+
*
|
3035
|
+
* @example
|
3036
|
+
* ``` ts
|
3037
|
+
* const { data } = await useSdk().plentysystems.getPayPalOrder({ paypalOrderId: 'paypal-123' });
|
3038
|
+
* ```
|
3039
|
+
*/
|
3040
|
+
const getPayPalFraudId = async (context) => {
|
3041
|
+
const url = new URL('/rest/paypal/fraud_id', context.config.api.url);
|
3042
|
+
const { data: response } = await context.client.get(url.href);
|
3043
|
+
return { data: response };
|
3044
|
+
};
|
3045
|
+
|
2906
3046
|
const getAdditionalInformation = (params) => {
|
2907
3047
|
return {
|
2908
3048
|
orderContactWish: params?.orderContactWish ?? null,
|
@@ -2950,7 +3090,7 @@ function getTree(categories) {
|
|
2950
3090
|
}
|
2951
3091
|
return tree;
|
2952
3092
|
}
|
2953
|
-
function getId$
|
3093
|
+
function getId$9(categoryTreeItem) {
|
2954
3094
|
return categoryTreeItem.id;
|
2955
3095
|
}
|
2956
3096
|
function getTreeItem(category) {
|
@@ -3031,7 +3171,7 @@ function generateBreadcrumbFromCategory(tree, categoryId) {
|
|
3031
3171
|
const category = findCategoryBySlugs(tree, path.slice(0, i + 1));
|
3032
3172
|
if (category) {
|
3033
3173
|
breadcrumbs.push({
|
3034
|
-
name: getName$
|
3174
|
+
name: getName$5(category),
|
3035
3175
|
link: generateCategoryLink(tree, category),
|
3036
3176
|
});
|
3037
3177
|
}
|
@@ -3044,7 +3184,7 @@ function getCategoryDetails$1(details) {
|
|
3044
3184
|
function getCount(category) {
|
3045
3185
|
return category ? Number(category?.itemCount?.[0]?.count) || 0 : 0;
|
3046
3186
|
}
|
3047
|
-
function getName$
|
3187
|
+
function getName$5(category) {
|
3048
3188
|
const details = getCategoryDetails$1(category.details);
|
3049
3189
|
return details ? details.name : '';
|
3050
3190
|
}
|
@@ -3069,7 +3209,7 @@ function getMappedBreadcrumbs(categories, categoryId, prefix = '') {
|
|
3069
3209
|
});
|
3070
3210
|
}
|
3071
3211
|
const categoryTreeGetters = {
|
3072
|
-
getId: getId$
|
3212
|
+
getId: getId$9,
|
3073
3213
|
getTree,
|
3074
3214
|
getTreeItem,
|
3075
3215
|
findCategoryBySlug,
|
@@ -3080,7 +3220,7 @@ const categoryTreeGetters = {
|
|
3080
3220
|
generateBreadcrumbFromCategory,
|
3081
3221
|
getCategoryDetails: getCategoryDetails$1,
|
3082
3222
|
getCount,
|
3083
|
-
getName: getName$
|
3223
|
+
getName: getName$5,
|
3084
3224
|
getSlug: getSlug$1,
|
3085
3225
|
getItems: getItems$4,
|
3086
3226
|
getMappedBreadcrumbs,
|
@@ -3495,7 +3635,7 @@ const productPriceGetters = {
|
|
3495
3635
|
|
3496
3636
|
const NO_SELECTION_ID = -1;
|
3497
3637
|
const ITEM_TYPE_SET$1 = 'set';
|
3498
|
-
function getName$
|
3638
|
+
function getName$4(product) {
|
3499
3639
|
return product?.texts?.name1 ?? '';
|
3500
3640
|
}
|
3501
3641
|
function getSlug(product) {
|
@@ -3629,7 +3769,7 @@ function getCategoryIds(product) {
|
|
3629
3769
|
'',
|
3630
3770
|
]);
|
3631
3771
|
}
|
3632
|
-
function getId$
|
3772
|
+
function getId$8(product) {
|
3633
3773
|
return product?.variation?.id.toString() ?? '';
|
3634
3774
|
}
|
3635
3775
|
function getItemId$1(product) {
|
@@ -3713,9 +3853,12 @@ function getAvailabilityBackgroundColor(product) {
|
|
3713
3853
|
function getAvailabilityTextColor(product) {
|
3714
3854
|
return AvailabilityTextColor[getAvailabilityId(product)];
|
3715
3855
|
}
|
3716
|
-
function getParentCategoryId(product) {
|
3856
|
+
function getParentCategoryId$1(product) {
|
3717
3857
|
return product.defaultCategories?.[0]?.parentCategoryId ?? 0;
|
3718
3858
|
}
|
3859
|
+
function getBarcodes(product) {
|
3860
|
+
return product.barcodes ?? [];
|
3861
|
+
}
|
3719
3862
|
function getManufacturer(product) {
|
3720
3863
|
const manufacturerData = product.item.manufacturer;
|
3721
3864
|
return Array.isArray(manufacturerData) ? manufacturerData[0] : manufacturerData;
|
@@ -3723,7 +3866,7 @@ function getManufacturer(product) {
|
|
3723
3866
|
const productGetters = {
|
3724
3867
|
getUnitContent,
|
3725
3868
|
getUnitName,
|
3726
|
-
getName: getName$
|
3869
|
+
getName: getName$4,
|
3727
3870
|
getMinimumOrderQuantity,
|
3728
3871
|
getSlug,
|
3729
3872
|
getUrlPath,
|
@@ -3745,7 +3888,7 @@ const productGetters = {
|
|
3745
3888
|
getShortDescription,
|
3746
3889
|
getTechnicalData,
|
3747
3890
|
getCategoryIds,
|
3748
|
-
getId: getId$
|
3891
|
+
getId: getId$8,
|
3749
3892
|
getTotalReviews: getTotalReviews$1,
|
3750
3893
|
getAverageRating: getAverageRating$1,
|
3751
3894
|
getItemId: getItemId$1,
|
@@ -3786,8 +3929,9 @@ const productGetters = {
|
|
3786
3929
|
getAgenciesAvailabilityCLass,
|
3787
3930
|
getMetaDescription: getMetaDescription$1,
|
3788
3931
|
getMetaKeywords: getMetaKeywords$1,
|
3789
|
-
getParentCategoryId,
|
3932
|
+
getParentCategoryId: getParentCategoryId$1,
|
3790
3933
|
getManufacturer,
|
3934
|
+
getBarcodes,
|
3791
3935
|
};
|
3792
3936
|
|
3793
3937
|
function getItems$3(cart) {
|
@@ -4043,7 +4187,70 @@ const cartGetters = {
|
|
4043
4187
|
getMaxDeliveryDays,
|
4044
4188
|
};
|
4045
4189
|
|
4046
|
-
function
|
4190
|
+
function getChildCount(categoryEntry) {
|
4191
|
+
return categoryEntry.childCount ?? 0;
|
4192
|
+
}
|
4193
|
+
function getChildren(categoryEntry) {
|
4194
|
+
return categoryEntry.children || [];
|
4195
|
+
}
|
4196
|
+
function getClients(categoryEntry) {
|
4197
|
+
return categoryEntry.clients || [];
|
4198
|
+
}
|
4199
|
+
function getDetails(categoryEntry) {
|
4200
|
+
return categoryEntry.details || [];
|
4201
|
+
}
|
4202
|
+
function getId$7(categoryEntry) {
|
4203
|
+
return categoryEntry.id ?? 0;
|
4204
|
+
}
|
4205
|
+
function getItemCount(categoryEntry) {
|
4206
|
+
return categoryEntry.itemCount ?? [];
|
4207
|
+
}
|
4208
|
+
function getLevel(categoryEntry) {
|
4209
|
+
return categoryEntry.level ?? 0;
|
4210
|
+
}
|
4211
|
+
function getLinklist(categoryEntry) {
|
4212
|
+
return categoryEntry.linklist || '';
|
4213
|
+
}
|
4214
|
+
function getParentCategoryId(categoryEntry) {
|
4215
|
+
return categoryEntry.parentCategoryId ?? 0;
|
4216
|
+
}
|
4217
|
+
function getRight(categoryEntry) {
|
4218
|
+
return categoryEntry.right || '';
|
4219
|
+
}
|
4220
|
+
function getSitemap(categoryEntry) {
|
4221
|
+
return categoryEntry.sitemap || '';
|
4222
|
+
}
|
4223
|
+
function getType$3(categoryEntry) {
|
4224
|
+
return categoryEntry.type || '';
|
4225
|
+
}
|
4226
|
+
function getRobots$1(categoryEntry) {
|
4227
|
+
return categoryEntry.robots || '';
|
4228
|
+
}
|
4229
|
+
function isLinkedToWebstore(categoryEntry) {
|
4230
|
+
return categoryEntry.isLinkedToWebstore ?? false;
|
4231
|
+
}
|
4232
|
+
function hasChildren(categoryEntry) {
|
4233
|
+
return categoryEntry.hasChildren ?? false;
|
4234
|
+
}
|
4235
|
+
const categoryEntryGetters = {
|
4236
|
+
getChildCount,
|
4237
|
+
getChildren,
|
4238
|
+
getClients,
|
4239
|
+
getDetails,
|
4240
|
+
getId: getId$7,
|
4241
|
+
getItemCount,
|
4242
|
+
getLevel,
|
4243
|
+
getLinklist,
|
4244
|
+
getParentCategoryId,
|
4245
|
+
getRight,
|
4246
|
+
getSitemap,
|
4247
|
+
getType: getType$3,
|
4248
|
+
getRobots: getRobots$1,
|
4249
|
+
isLinkedToWebstore,
|
4250
|
+
hasChildren
|
4251
|
+
};
|
4252
|
+
|
4253
|
+
function getId$6(category) {
|
4047
4254
|
return category.id ?? 0;
|
4048
4255
|
}
|
4049
4256
|
function getParentId(category) {
|
@@ -4080,7 +4287,7 @@ function getCategoryRobots(category) {
|
|
4080
4287
|
return category.robots || '';
|
4081
4288
|
}
|
4082
4289
|
const categoryGetters = {
|
4083
|
-
getId: getId$
|
4290
|
+
getId: getId$6,
|
4084
4291
|
getParentId,
|
4085
4292
|
getCategoryName,
|
4086
4293
|
getCategoryDetails,
|
@@ -4134,10 +4341,10 @@ function getSortOptions(params) {
|
|
4134
4341
|
function getProducts(searchData) {
|
4135
4342
|
return searchData?.data?.products ?? [];
|
4136
4343
|
}
|
4137
|
-
function getName$
|
4344
|
+
function getName$3(filterGroup) {
|
4138
4345
|
return filterGroup?.name ?? '';
|
4139
4346
|
}
|
4140
|
-
function getType$
|
4347
|
+
function getType$2(filterGroup) {
|
4141
4348
|
return filterGroup?.type ?? '';
|
4142
4349
|
}
|
4143
4350
|
function getFilters(filterGroup) {
|
@@ -4176,8 +4383,8 @@ function getPagination$2(params) {
|
|
4176
4383
|
}
|
4177
4384
|
const facetGetters = {
|
4178
4385
|
getAll,
|
4179
|
-
getName: getName$
|
4180
|
-
getType: getType$
|
4386
|
+
getName: getName$3,
|
4387
|
+
getType: getType$2,
|
4181
4388
|
getFilterName,
|
4182
4389
|
getFilterCount,
|
4183
4390
|
getCssClass,
|
@@ -4221,7 +4428,7 @@ function getShippingDate(order, locale = '') {
|
|
4221
4428
|
function getById(orders, id) {
|
4222
4429
|
return orders.find((order) => order?.order?.id.toString() === id) ?? null;
|
4223
4430
|
}
|
4224
|
-
function getId$
|
4431
|
+
function getId$5(order) {
|
4225
4432
|
return order?.order?.id?.toString() || '';
|
4226
4433
|
}
|
4227
4434
|
function getOrderEmail(order) {
|
@@ -4655,7 +4862,7 @@ const orderGetters = {
|
|
4655
4862
|
getById,
|
4656
4863
|
getDate: getDate$1,
|
4657
4864
|
getFormattedPrice: getFormattedPrice$2,
|
4658
|
-
getId: getId$
|
4865
|
+
getId: getId$5,
|
4659
4866
|
getItemName: getItemName$2,
|
4660
4867
|
getItemShortDescription,
|
4661
4868
|
getItemPrice: getItemPrice$2,
|
@@ -4742,14 +4949,14 @@ const orderGetters = {
|
|
4742
4949
|
getShippingCostNet,
|
4743
4950
|
};
|
4744
4951
|
|
4745
|
-
function getType(document) {
|
4952
|
+
function getType$1(document) {
|
4746
4953
|
return document?.type ?? '';
|
4747
4954
|
}
|
4748
4955
|
function getNumberWithPrefix(document) {
|
4749
4956
|
return document?.numberWithPrefix ?? '';
|
4750
4957
|
}
|
4751
4958
|
const orderDocumentGetters = {
|
4752
|
-
getType,
|
4959
|
+
getType: getType$1,
|
4753
4960
|
getNumberWithPrefix,
|
4754
4961
|
};
|
4755
4962
|
|
@@ -4759,7 +4966,7 @@ function getDate(returnItem) {
|
|
4759
4966
|
}
|
4760
4967
|
return '';
|
4761
4968
|
}
|
4762
|
-
function getId$
|
4969
|
+
function getId$4(returnItem) {
|
4763
4970
|
return returnItem.order?.id.toString() || '';
|
4764
4971
|
}
|
4765
4972
|
function getStatus(returnItem) {
|
@@ -4836,7 +5043,7 @@ function getDefaultReturnReasonId(data) {
|
|
4836
5043
|
}
|
4837
5044
|
const returnGetters = {
|
4838
5045
|
getDate,
|
4839
|
-
getId: getId$
|
5046
|
+
getId: getId$4,
|
4840
5047
|
getStatus,
|
4841
5048
|
getPrice,
|
4842
5049
|
getItems: getItems$1,
|
@@ -5196,7 +5403,7 @@ filters) {
|
|
5196
5403
|
function getItemSku(item) {
|
5197
5404
|
return '';
|
5198
5405
|
}
|
5199
|
-
function getId$
|
5406
|
+
function getId$3(product) {
|
5200
5407
|
return product?.variation?.id.toString() ?? '';
|
5201
5408
|
}
|
5202
5409
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
@@ -5236,7 +5443,7 @@ const wishlistGetters = {
|
|
5236
5443
|
getItemSku,
|
5237
5444
|
getTotalItems,
|
5238
5445
|
getFormattedPrice,
|
5239
|
-
getId: getId$
|
5446
|
+
getId: getId$3,
|
5240
5447
|
canDirectlyAddToCart,
|
5241
5448
|
getCanDirectlyAddToCart,
|
5242
5449
|
};
|
@@ -5283,10 +5490,10 @@ const shippingProviderGetters = {
|
|
5283
5490
|
getShippingProfileId,
|
5284
5491
|
};
|
5285
5492
|
|
5286
|
-
function getId$
|
5493
|
+
function getId$2(paymentMethod) {
|
5287
5494
|
return paymentMethod?.id.toString() ?? '0';
|
5288
5495
|
}
|
5289
|
-
function getName$
|
5496
|
+
function getName$2(paymentMethod) {
|
5290
5497
|
return paymentMethod?.name ?? '';
|
5291
5498
|
}
|
5292
5499
|
function getIcon(paymentMethod) {
|
@@ -5316,8 +5523,8 @@ function getPaymentMethodById(paymentMethods, id) {
|
|
5316
5523
|
return paymentMethods.find((method) => method.id === id) ?? null;
|
5317
5524
|
}
|
5318
5525
|
const paymentProviderGetters = {
|
5319
|
-
getId: getId$
|
5320
|
-
getName: getName$
|
5526
|
+
getId: getId$2,
|
5527
|
+
getName: getName$2,
|
5321
5528
|
getIcon,
|
5322
5529
|
getMethodOfPaymentId,
|
5323
5530
|
getPaymentKey,
|
@@ -5421,7 +5628,7 @@ function getCompanyName(address) {
|
|
5421
5628
|
function getVatNumber(address) {
|
5422
5629
|
return address.vatNumber ?? '';
|
5423
5630
|
}
|
5424
|
-
function getId(address) {
|
5631
|
+
function getId$1(address) {
|
5425
5632
|
return address?.id?.toString() ?? '';
|
5426
5633
|
}
|
5427
5634
|
function getApartmentNumber(address) {
|
@@ -5472,7 +5679,7 @@ const userAddressGetters = {
|
|
5472
5679
|
getProvince,
|
5473
5680
|
getCompanyName,
|
5474
5681
|
getVatNumber,
|
5475
|
-
getId,
|
5682
|
+
getId: getId$1,
|
5476
5683
|
getApartmentNumber,
|
5477
5684
|
isDefault,
|
5478
5685
|
getAddressWithoutId,
|
@@ -5524,7 +5731,7 @@ const legalGetters = {
|
|
5524
5731
|
getHtml,
|
5525
5732
|
};
|
5526
5733
|
|
5527
|
-
function getName(company) {
|
5734
|
+
function getName$1(company) {
|
5528
5735
|
return company.name ?? '';
|
5529
5736
|
}
|
5530
5737
|
function getStreet(company) {
|
@@ -5537,7 +5744,7 @@ function getEmail(company) {
|
|
5537
5744
|
return company.email ?? '';
|
5538
5745
|
}
|
5539
5746
|
const companyGetters = {
|
5540
|
-
getName,
|
5747
|
+
getName: getName$1,
|
5541
5748
|
getStreet,
|
5542
5749
|
getCity,
|
5543
5750
|
getEmail,
|
@@ -5618,14 +5825,14 @@ const heroesGetters = {
|
|
5618
5825
|
getClassName,
|
5619
5826
|
};
|
5620
5827
|
|
5621
|
-
function getCode(locale) {
|
5828
|
+
function getCode$1(locale) {
|
5622
5829
|
return locale ? locale.code : 'en';
|
5623
5830
|
}
|
5624
5831
|
function getLabel(locale) {
|
5625
5832
|
return locale ? locale.label : 'en';
|
5626
5833
|
}
|
5627
5834
|
const localesGetters = {
|
5628
|
-
getCode,
|
5835
|
+
getCode: getCode$1,
|
5629
5836
|
getLabel,
|
5630
5837
|
};
|
5631
5838
|
|
@@ -6030,10 +6237,43 @@ const robotGetters = {
|
|
6030
6237
|
getRobotsAccessibilityDeclarationResult,
|
6031
6238
|
};
|
6032
6239
|
|
6240
|
+
function getId(barcode) {
|
6241
|
+
return barcode?.id || 0;
|
6242
|
+
}
|
6243
|
+
function getName(barcode) {
|
6244
|
+
return barcode?.name || '';
|
6245
|
+
}
|
6246
|
+
function getType(barcode) {
|
6247
|
+
return barcode?.type || '';
|
6248
|
+
}
|
6249
|
+
function getCode(barcode) {
|
6250
|
+
return barcode?.code || '';
|
6251
|
+
}
|
6252
|
+
function getCreatedAt(barcode) {
|
6253
|
+
return barcode?.createdAt || '';
|
6254
|
+
}
|
6255
|
+
function getUpdatedAt(barcode) {
|
6256
|
+
return barcode?.updatedAt || '';
|
6257
|
+
}
|
6258
|
+
function getReferrers(barcode) {
|
6259
|
+
return barcode?.referrers ?? [];
|
6260
|
+
}
|
6261
|
+
const barcodeGetters = {
|
6262
|
+
getId,
|
6263
|
+
getName,
|
6264
|
+
getType,
|
6265
|
+
getCode,
|
6266
|
+
getCreatedAt,
|
6267
|
+
getUpdatedAt,
|
6268
|
+
getReferrers,
|
6269
|
+
};
|
6270
|
+
|
6033
6271
|
exports.ApiError = ApiError;
|
6034
6272
|
exports.additionalInformationGetters = additionalInformationGetters;
|
6035
6273
|
exports.bannerGetters = bannerGetters;
|
6274
|
+
exports.barcodeGetters = barcodeGetters;
|
6036
6275
|
exports.cartGetters = cartGetters;
|
6276
|
+
exports.categoryEntryGetters = categoryEntryGetters;
|
6037
6277
|
exports.categoryGetters = categoryGetters;
|
6038
6278
|
exports.categoryTreeGetters = categoryTreeGetters;
|
6039
6279
|
exports.companyGetters = companyGetters;
|
@@ -6061,17 +6301,21 @@ exports.doAttachMolliePaymentToOrder = doAttachMolliePaymentToOrder;
|
|
6061
6301
|
exports.doAttachPaymentToOrder = doAttachPaymentToOrder;
|
6062
6302
|
exports.doCaptureMolliePayment = doCaptureMolliePayment;
|
6063
6303
|
exports.doCapturePayPalOrder = doCapturePayPalOrder;
|
6304
|
+
exports.doCapturePayPalOrderV2 = doCapturePayPalOrderV2;
|
6064
6305
|
exports.doChangeUserPassword = doChangeUserPassword;
|
6065
6306
|
exports.doCreateMolliePaymentFromBasket = doCreateMolliePaymentFromBasket;
|
6066
6307
|
exports.doCreateMolliePaymentFromOrder = doCreateMolliePaymentFromOrder;
|
6067
6308
|
exports.doCreatePayPalCreditCardTransaction = doCreatePayPalCreditCardTransaction;
|
6309
|
+
exports.doCreatePayPalOrder = doCreatePayPalOrder;
|
6068
6310
|
exports.doCreatePayPalTransaction = doCreatePayPalTransaction;
|
6069
6311
|
exports.doCreatePlentyPaymentFromMolliePayment = doCreatePlentyPaymentFromMolliePayment;
|
6312
|
+
exports.doCreatePlentyPaymentFromPayPalOrder = doCreatePlentyPaymentFromPayPalOrder;
|
6070
6313
|
exports.doCustomerContactMail = doCustomerContactMail;
|
6071
6314
|
exports.doEmailConfirmation = doEmailConfirmation;
|
6072
6315
|
exports.doExecutePayment = doExecutePayment;
|
6073
6316
|
exports.doHandleAllowPaymentApplePay = doHandleAllowPaymentApplePay;
|
6074
6317
|
exports.doHandleAllowPaymentGooglePay = doHandleAllowPaymentGooglePay;
|
6318
|
+
exports.doHandlePayPalPaymentFundingSources = doHandlePayPalPaymentFundingSources;
|
6075
6319
|
exports.doLogin = doLogin;
|
6076
6320
|
exports.doLoginAsGuest = doLoginAsGuest;
|
6077
6321
|
exports.doLogoutUser = doLogoutUser;
|
@@ -6115,7 +6359,9 @@ exports.getOrderPropertyFile = getOrderPropertyFile;
|
|
6115
6359
|
exports.getOrders = getOrders$1;
|
6116
6360
|
exports.getPackstations = getPackstations;
|
6117
6361
|
exports.getPayPalDataClientToken = getPayPalDataClientToken;
|
6362
|
+
exports.getPayPalFraudId = getPayPalFraudId;
|
6118
6363
|
exports.getPayPalMerchantAndClientIds = getPayPalMerchantAndClientIds;
|
6364
|
+
exports.getPayPalOrder = getPayPalOrder;
|
6119
6365
|
exports.getPayPalOrderDetails = getPayPalOrderDetails;
|
6120
6366
|
exports.getPaymentProviders = getPaymentProviders;
|
6121
6367
|
exports.getPreferredDeliveryLocationShippingProfiles = getPreferredDeliveryLocationShippingProfiles;
|
@@ -6126,7 +6372,7 @@ exports.getReturnReasons = getReturnReasons$1;
|
|
6126
6372
|
exports.getReturns = getReturns;
|
6127
6373
|
exports.getReview = getReview;
|
6128
6374
|
exports.getReviewAverage = getReviewAverage;
|
6129
|
-
exports.getRobots = getRobots$
|
6375
|
+
exports.getRobots = getRobots$2;
|
6130
6376
|
exports.getSearch = getSearch;
|
6131
6377
|
exports.getSession = getSession;
|
6132
6378
|
exports.getShippingProvider = getShippingProvider$1;
|
package/lib/index.cjs.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|