@evershop/evershop 1.2.0 → 1.2.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 +116 -109
- package/bin/build/client/index.js +25 -25
- package/bin/build/complie.js +30 -30
- package/bin/build/index.js +70 -70
- package/bin/build/server/index.js +25 -25
- package/bin/build/server/useDDL.js +279 -279
- package/bin/build/server/useVendorChunk.js +89 -89
- package/bin/dev/index.js +9 -9
- package/bin/evershop +38 -38
- package/bin/extension/index.js +49 -49
- package/bin/install/createMigrationTable.js +17 -17
- package/bin/install/index.js +292 -292
- package/bin/install/templates/config.json +17 -17
- package/bin/lib/addDefaultMiddlewareFuncs.js +341 -341
- package/bin/lib/app.js +92 -92
- package/bin/lib/bootstrap/bootstrap.js +11 -11
- package/bin/lib/bootstrap/migrate.js +95 -95
- package/bin/lib/buildEntry.js +140 -137
- package/bin/lib/createComponents.js +93 -93
- package/bin/lib/cronjob.js +49 -0
- package/bin/lib/loadModules.js +90 -90
- package/bin/lib/normalizePort.js +19 -19
- package/bin/lib/onError.js +28 -28
- package/bin/lib/onListening.js +22 -22
- package/bin/lib/prepare.js +68 -68
- package/bin/lib/startUp.js +116 -99
- package/bin/lib/watch/broadcash.js +18 -18
- package/bin/lib/watch/refreshable.js +19 -19
- package/bin/lib/watch/watch.js +31 -31
- package/bin/lib/watch/watchComponents.js +26 -26
- package/bin/lib/watch/watchMF.js +37 -37
- package/bin/lib/watch/watchMR.js +102 -102
- package/bin/lib/watch/watchPage.js +15 -15
- package/bin/lib/watch/watchSchema.js +24 -24
- package/bin/start/index.js +8 -8
- package/bin/user/changePassword.js +69 -69
- package/bin/user/create.js +78 -78
- package/package.json +138 -136
- package/src/components/admin/auth/AuthContext.jsx +26 -26
- package/src/components/admin/catalog/attributeGrid/headers/GroupHeader.jsx +80 -80
- package/src/components/admin/catalog/attributeGrid/rows/AttributeName.jsx +19 -19
- package/src/components/admin/catalog/attributeGrid/rows/GroupRow.jsx +101 -101
- package/src/components/admin/catalog/categoryGrid/rows/CategoryName.jsx +25 -25
- package/src/components/admin/catalog/collection/collectionEdit/AddProducts.jsx +51 -51
- package/src/components/admin/catalog/collectionGrid/rows/CollectionNameRow.jsx +19 -19
- package/src/components/admin/catalog/productEdit/category/CategoryItem.jsx +128 -128
- package/src/components/admin/catalog/productEdit/category/CategoryTree.jsx +99 -99
- package/src/components/admin/catalog/productEdit/category/CategoryTree.scss +14 -14
- package/src/components/admin/catalog/productEdit/media/ProductMediaManager.jsx +264 -264
- package/src/components/admin/catalog/productEdit/media/ProductMediaManager.scss +76 -76
- package/src/components/admin/catalog/productEdit/variants/CreateVariant.jsx +100 -100
- package/src/components/admin/catalog/productEdit/variants/CreateVariantGroup.jsx +141 -141
- package/src/components/admin/catalog/productEdit/variants/EditVariant.jsx +115 -115
- package/src/components/admin/catalog/productEdit/variants/New.jsx +62 -62
- package/src/components/admin/catalog/productEdit/variants/Search.jsx +51 -51
- package/src/components/admin/catalog/productEdit/variants/SearchModal.jsx +191 -191
- package/src/components/admin/catalog/productEdit/variants/SubmitButton.jsx +137 -137
- package/src/components/admin/catalog/productEdit/variants/Variant.jsx +73 -73
- package/src/components/admin/catalog/productEdit/variants/VariantModal.jsx +201 -201
- package/src/components/admin/catalog/productEdit/variants/VariantType.jsx +20 -20
- package/src/components/admin/catalog/productEdit/variants/Variants.jsx +180 -180
- package/src/components/admin/catalog/productEdit/variants/Variants.scss +50 -50
- package/src/components/admin/catalog/productGrid/rows/PriceRow.jsx +24 -24
- package/src/components/admin/catalog/productGrid/rows/ProductName.jsx +19 -19
- package/src/components/admin/catalog/productGrid/rows/QtyRow.jsx +16 -16
- package/src/components/admin/catalog/productGrid/rows/ThumbnailRow.jsx +37 -37
- package/src/components/admin/checkout/shippingSetting/Method.jsx +149 -130
- package/src/components/admin/checkout/shippingSetting/MethodForm.jsx +370 -366
- package/src/components/admin/checkout/shippingSetting/Methods.jsx +74 -70
- package/src/components/admin/checkout/shippingSetting/PriceBasedPrice.jsx +101 -101
- package/src/components/admin/checkout/shippingSetting/WeightBasedPrice.jsx +101 -101
- package/src/components/admin/checkout/shippingSetting/Zone.jsx +147 -147
- package/src/components/admin/checkout/shippingSetting/ZoneForm.jsx +146 -146
- package/src/components/admin/checkout/shippingSetting/Zones.jsx +57 -44
- package/src/components/admin/cms/Card.jsx +132 -132
- package/src/components/admin/cms/Card.scss +38 -38
- package/src/components/admin/cms/Dot.jsx +18 -18
- package/src/components/admin/cms/NavigationItem.jsx +39 -39
- package/src/components/admin/cms/NavigationItem.scss +10 -10
- package/src/components/admin/cms/NavigationItemGroup.jsx +67 -67
- package/src/components/admin/cms/NavigationItemGroup.scss +32 -32
- package/src/components/admin/cms/PageHeading.jsx +94 -94
- package/src/components/admin/cms/PageHeading.scss +19 -19
- package/src/components/admin/cms/Title.jsx +10 -10
- package/src/components/admin/cms/cmsPageGrid/rows/NameRow.jsx +22 -22
- package/src/components/admin/cms/cmsPageGrid/rows/PageName.jsx +19 -19
- package/src/components/admin/cms/navigation/DashboardMenuItem.jsx +12 -12
- package/src/components/admin/cms/navigation/PagesMenuItem.jsx +12 -12
- package/src/components/admin/cms/widget/WidgetTypes.jsx +28 -28
- package/src/components/admin/cms/widget/grid/WidgetTypeRow.jsx +29 -29
- package/src/components/admin/customer/customerGrid/rows/CreateAt.jsx +16 -16
- package/src/components/admin/customer/customerGrid/rows/CustomerName.jsx +19 -19
- package/src/components/admin/oms/orderEdit/Shipment.jsx +243 -243
- package/src/components/admin/oms/orderEdit/items/ItemOptions.jsx +53 -53
- package/src/components/admin/oms/orderEdit/items/ItemVariantOptions.jsx +37 -37
- package/src/components/admin/oms/orderEdit/items/Name.jsx +45 -45
- package/src/components/admin/oms/orderEdit/items/Price.jsx +21 -21
- package/src/components/admin/oms/orderEdit/items/Thumbnail.jsx +40 -40
- package/src/components/admin/oms/orderEdit/payment/Discount.jsx +24 -24
- package/src/components/admin/oms/orderEdit/payment/Shipping.jsx +19 -19
- package/src/components/admin/oms/orderEdit/payment/SubTotal.jsx +19 -19
- package/src/components/admin/oms/orderEdit/payment/Tax.jsx +20 -20
- package/src/components/admin/oms/orderEdit/payment/Total.jsx +18 -18
- package/src/components/admin/oms/orderGrid/headers/OrderDateColumnHeader.jsx +81 -81
- package/src/components/admin/oms/orderGrid/headers/PaymentStatusColumnHeader.jsx +63 -63
- package/src/components/admin/oms/orderGrid/headers/ShipmentStatusColumnHeader.jsx +63 -63
- package/src/components/admin/oms/orderGrid/rows/OrderNumberRow.jsx +19 -19
- package/src/components/admin/oms/orderGrid/rows/PaymentStatus.jsx +23 -19
- package/src/components/admin/oms/orderGrid/rows/ShipmentStatus.jsx +23 -19
- package/src/components/admin/oms/orderGrid/rows/TotalRow.jsx +10 -10
- package/src/components/admin/promotion/couponEdit/AttributeGroupConditionSelector.jsx +95 -92
- package/src/components/admin/promotion/couponEdit/AttributeGroupSelector.jsx +196 -196
- package/src/components/admin/promotion/couponEdit/BuyXGetY.jsx +275 -275
- package/src/components/admin/promotion/couponEdit/CategoryConditionSelector.jsx +91 -89
- package/src/components/admin/promotion/couponEdit/CategorySelector.jsx +183 -173
- package/src/components/admin/promotion/couponEdit/CollectionConditionSelector.jsx +95 -92
- package/src/components/admin/promotion/couponEdit/CollectionSelector.jsx +173 -173
- package/src/components/admin/promotion/couponEdit/CompareKeyList.jsx +22 -22
- package/src/components/admin/promotion/couponEdit/CompareOperatorList.jsx +42 -42
- package/src/components/admin/promotion/couponEdit/PriceConditionSelector.jsx +50 -46
- package/src/components/admin/promotion/couponEdit/ProductSkuSelector.jsx +238 -238
- package/src/components/admin/promotion/couponEdit/RequireProducts.jsx +442 -443
- package/src/components/admin/promotion/couponEdit/Setting.jsx +82 -82
- package/src/components/admin/promotion/couponEdit/SkuConditionSelector.jsx +104 -101
- package/src/components/admin/promotion/couponEdit/TargetProducts.jsx +511 -505
- package/src/components/admin/promotion/couponGrid/rows/CouponName.jsx +19 -19
- package/src/components/admin/setting/SettingMenu.jsx +14 -14
- package/src/components/admin/setting/SettingMenu.scss +8 -8
- package/src/components/admin/tax/taxSetting/Rate.jsx +84 -79
- package/src/components/admin/tax/taxSetting/RateForm.jsx +175 -175
- package/src/components/admin/tax/taxSetting/Rates.jsx +77 -75
- package/src/components/admin/tax/taxSetting/TaxClass.jsx +48 -48
- package/src/components/admin/tax/taxSetting/TaxClassForm.jsx +58 -58
- package/src/components/admin/tax/taxSetting/TaxClasses.jsx +52 -51
- package/src/components/admin/widgets/BasicMenuSetting.jsx +614 -614
- package/src/components/admin/widgets/BasicMenuSetting.scss +19 -19
- package/src/components/admin/widgets/CollectionProductsSetting.jsx +203 -203
- package/src/components/admin/widgets/TextBlockSetting.jsx +70 -70
- package/src/components/common/Area.jsx +132 -132
- package/src/components/common/Badge.jsx +51 -51
- package/src/components/common/Badge.scss +111 -111
- package/src/components/common/Body.jsx +10 -10
- package/src/components/common/BundleCss.jsx +13 -13
- package/src/components/common/BundleJs.jsx +9 -9
- package/src/components/common/CKEditor.jsx +20 -20
- package/src/components/common/CKEditor.scss +460 -460
- package/src/components/common/Circle.jsx +36 -36
- package/src/components/common/Circle.scss +90 -90
- package/src/components/common/Dot.jsx +40 -40
- package/src/components/common/Dot.scss +32 -32
- package/src/components/common/Editor.jsx +193 -191
- package/src/components/common/Link.jsx +19 -19
- package/src/components/common/LoadingBar.jsx +41 -41
- package/src/components/common/LoadingBar.scss +14 -14
- package/src/components/common/Meta.jsx +29 -29
- package/src/components/common/Notification.jsx +37 -37
- package/src/components/common/Notification.scss +536 -536
- package/src/components/common/Off.jsx +10 -10
- package/src/components/common/Off.scss +26 -26
- package/src/components/common/On.jsx +10 -10
- package/src/components/common/On.scss +26 -26
- package/src/components/common/ProductNoThumbnail.jsx +39 -39
- package/src/components/common/RenderIfTrue.jsx +10 -0
- package/src/components/common/Script.jsx +15 -15
- package/src/components/common/SimplePagination.jsx +60 -60
- package/src/components/common/Spinner.jsx +42 -42
- package/src/components/common/Title.jsx +10 -10
- package/src/components/common/context/app.jsx +62 -62
- package/src/components/common/context/checkout.jsx +87 -94
- package/src/components/common/context/checkoutSteps.jsx +109 -103
- package/src/components/common/customer/address/AddressSummary.jsx +73 -73
- package/src/components/common/form/Button.jsx +96 -96
- package/src/components/common/form/Button.scss +66 -66
- package/src/components/common/form/Field.jsx +143 -135
- package/src/components/common/form/Field.scss +201 -203
- package/src/components/common/form/Form.jsx +254 -254
- package/src/components/common/form/fields/Checkbox.jsx +81 -81
- package/src/components/common/form/fields/Checkbox.scss +1 -1
- package/src/components/common/form/fields/Ckeditor.jsx +514 -514
- package/src/components/common/form/fields/Ckeditor.scss +53 -53
- package/src/components/common/form/fields/Date.jsx +78 -78
- package/src/components/common/form/fields/Date.scss +1 -1
- package/src/components/common/form/fields/DateTime.jsx +78 -78
- package/src/components/common/form/fields/DateTime.scss +1 -1
- package/src/components/common/form/fields/Editor.jsx +343 -326
- package/src/components/common/form/fields/Editor.scss +33 -29
- package/src/components/common/form/fields/Error.jsx +24 -24
- package/src/components/common/form/fields/Flatpickr.jsx +4 -4
- package/src/components/common/form/fields/Flatpickr.scss +789 -789
- package/src/components/common/form/fields/Hidden.jsx +30 -30
- package/src/components/common/form/fields/Input.jsx +79 -76
- package/src/components/common/form/fields/Input.scss +1 -1
- package/src/components/common/form/fields/MultiSelect.jsx +97 -97
- package/src/components/common/form/fields/MultiSelect.scss +1 -1
- package/src/components/common/form/fields/Password.jsx +74 -74
- package/src/components/common/form/fields/Radio.jsx +83 -83
- package/src/components/common/form/fields/Radio.scss +1 -1
- package/src/components/common/form/fields/Select.jsx +109 -109
- package/src/components/common/form/fields/Select.scss +1 -1
- package/src/components/common/form/fields/Textarea.jsx +68 -68
- package/src/components/common/form/fields/Textarea.scss +1 -1
- package/src/components/common/form/fields/Toggle.jsx +110 -110
- package/src/components/common/form/fields/Toggle.scss +26 -26
- package/src/components/common/form/fields/editor/FileBrowser.jsx +419 -419
- package/src/components/common/form/fields/editor/FileBrowser.scss +36 -36
- package/src/components/common/form/fields/editor/GetColumnClasses.jsx +14 -14
- package/src/components/common/form/fields/editor/GetRowClasses.jsx +18 -18
- package/src/components/common/form/fields/editor/RowTemplates.jsx +155 -154
- package/src/components/common/form/validator.js +59 -59
- package/src/components/common/grid/Pagination.jsx +170 -170
- package/src/components/common/grid/Pagination.scss +25 -25
- package/src/components/common/grid/headers/Action.jsx +34 -34
- package/src/components/common/grid/headers/Dropdown.jsx +65 -65
- package/src/components/common/grid/headers/Dummy.jsx +18 -18
- package/src/components/common/grid/headers/FromTo.jsx +73 -73
- package/src/components/common/grid/headers/Sortable.jsx +147 -148
- package/src/components/common/grid/headers/Status.jsx +52 -52
- package/src/components/common/grid/rows/ActionRow.jsx +41 -41
- package/src/components/common/grid/rows/BasicRow.jsx +15 -15
- package/src/components/common/grid/rows/DateRow.jsx +34 -34
- package/src/components/common/grid/rows/PriceRow.jsx +28 -28
- package/src/components/common/grid/rows/StatusRow.jsx +27 -27
- package/src/components/common/grid/rows/TextRow.jsx +10 -10
- package/src/components/common/grid/rows/ThumbnailRow.jsx +43 -43
- package/src/components/common/grid/rows/YesNoRow.jsx +23 -24
- package/src/components/common/list/Filter.jsx +83 -83
- package/src/components/common/list/Filter.scss +38 -38
- package/src/components/common/locale/CountryOption.jsx +277 -277
- package/src/components/common/locale/CurrencyOption.jsx +196 -196
- package/src/components/common/locale/LanguageOption.jsx +218 -218
- package/src/components/common/locale/ProvinceOption.jsx +3690 -3690
- package/src/components/common/locale/TimezoneOption.jsx +1266 -1266
- package/src/components/common/modal/Alert.jsx +145 -145
- package/src/components/common/modal/Alert.scss +84 -84
- package/src/components/common/modal/Modal.jsx +64 -64
- package/src/components/common/modal/useModal.js +51 -51
- package/src/components/common/react/Head.jsx +10 -10
- package/src/components/common/react/client/Client.jsx +32 -32
- package/src/components/common/react/client/HotReload.jsx +47 -47
- package/src/components/common/react/client/Hydrate.jsx +25 -25
- package/src/components/common/react/client/HydrateAdmin.jsx +11 -11
- package/src/components/common/react/client/HydrateFrontStore.jsx +11 -11
- package/src/components/common/react/client/Index.jsx +22 -22
- package/src/components/common/react/getComponents.js +19 -19
- package/src/components/common/react/server/Server.jsx +38 -38
- package/src/components/common/react/server/render.jsx +18 -18
- package/src/components/frontStore/catalog/categoryView/filter/AttributeFilter.jsx +153 -153
- package/src/components/frontStore/catalog/categoryView/filter/CategoryFilter.jsx +142 -142
- package/src/components/frontStore/catalog/categoryView/filter/CategoryFilter.scss +5 -5
- package/src/components/frontStore/catalog/categoryView/filter/PriceFilter.jsx +211 -211
- package/src/components/frontStore/catalog/categoryView/filter/PriceFilter.scss +25 -25
- package/src/components/frontStore/catalog/product/list/List.jsx +92 -92
- package/src/components/frontStore/catalog/product/list/Pagination.jsx +156 -156
- package/src/components/frontStore/catalog/product/list/Pagination.scss +21 -21
- package/src/components/frontStore/catalog/product/list/SortOptions.jsx +8 -8
- package/src/components/frontStore/catalog/product/list/Sorting.jsx +118 -118
- package/src/components/frontStore/catalog/product/list/item/Name.jsx +24 -24
- package/src/components/frontStore/catalog/product/list/item/Name.scss +3 -3
- package/src/components/frontStore/catalog/product/list/item/Price.jsx +35 -35
- package/src/components/frontStore/catalog/product/list/item/Thumbnail.jsx +35 -35
- package/src/components/frontStore/catalog/product/list/item/Thumbnail.scss +9 -9
- package/src/components/frontStore/catalog/product/single/Name.jsx +10 -10
- package/src/components/frontStore/catalog/product/single/NoThumbnail.jsx +39 -39
- package/src/components/frontStore/catalog/product/single/Price.jsx +31 -31
- package/src/components/frontStore/catalog/product/single/Sku.jsx +16 -16
- package/src/components/frontStore/checkout/cart/Empty.jsx +50 -50
- package/src/components/frontStore/checkout/cart/items/ItemOptions.jsx +58 -58
- package/src/components/frontStore/checkout/cart/items/ItemVariantOptions.jsx +35 -35
- package/src/components/frontStore/checkout/cart/items/Items.jsx +190 -190
- package/src/components/frontStore/checkout/cart/items/Items.scss +96 -96
- package/src/components/frontStore/checkout/cart/items/Quantity.jsx +154 -154
- package/src/components/frontStore/checkout/checkout/CheckoutButton.jsx +28 -28
- package/src/components/frontStore/checkout/checkout/StepTitle.jsx +52 -52
- package/src/components/frontStore/checkout/checkout/payment/paymentMethods/Methods.jsx +17 -17
- package/src/components/frontStore/checkout/checkout/payment/paymentStep/BillingAddress.jsx +30 -30
- package/src/components/frontStore/checkout/checkout/payment/paymentStep/StepContent.jsx +228 -207
- package/src/components/frontStore/checkout/checkout/shipment/StepContent.jsx +192 -117
- package/src/components/frontStore/checkout/checkout/summary/Cart.jsx +89 -89
- package/src/components/frontStore/checkout/checkout/summary/Items.jsx +108 -108
- package/src/components/frontStore/checkout/checkout/summary/Items.scss +53 -53
- package/src/components/frontStore/checkout/checkout/summary/cart/Discount.jsx +29 -29
- package/src/components/frontStore/checkout/checkout/summary/cart/Shipping.jsx +29 -29
- package/src/components/frontStore/checkout/checkout/summary/cart/Subtotal.jsx +20 -20
- package/src/components/frontStore/checkout/checkout/summary/cart/Tax.jsx +23 -23
- package/src/components/frontStore/checkout/checkout/summary/cart/Total.jsx +38 -38
- package/src/components/frontStore/checkout/success/summary/items/ItemOptions.jsx +58 -58
- package/src/components/frontStore/checkout/success/summary/items/Items.jsx +71 -72
- package/src/components/frontStore/checkout/success/summary/items/Items.scss +53 -53
- package/src/components/frontStore/checkout/success/summary/order/Discount.jsx +29 -29
- package/src/components/frontStore/checkout/success/summary/order/OrderSummary.jsx +98 -96
- package/src/components/frontStore/checkout/success/summary/order/Shipping.jsx +29 -29
- package/src/components/frontStore/checkout/success/summary/order/Subtotal.jsx +20 -20
- package/src/components/frontStore/checkout/success/summary/order/Tax.jsx +23 -23
- package/src/components/frontStore/checkout/success/summary/order/Total.jsx +34 -34
- package/src/components/frontStore/cms/Button.jsx +4 -4
- package/src/components/frontStore/cms/Button.scss +67 -67
- package/src/components/frontStore/cms/MetaDescription.jsx +10 -10
- package/src/components/frontStore/cms/MetaTitle.jsx +10 -10
- package/src/components/frontStore/cod/CODLogo.jsx +24 -24
- package/src/components/frontStore/customer/address/addressForm/AddressForm.jsx +179 -173
- package/src/components/frontStore/customer/address/addressForm/AddressFormLoadingSkeleton.jsx +20 -20
- package/src/components/frontStore/customer/address/addressForm/AddressFormLoadingSkeleton.scss +26 -26
- package/src/components/frontStore/customer/address/addressForm/Country.jsx +52 -46
- package/src/components/frontStore/customer/address/addressForm/Index.jsx +77 -76
- package/src/components/frontStore/customer/address/addressForm/NameAndTelephone.jsx +72 -72
- package/src/components/frontStore/customer/address/addressForm/Province.jsx +61 -61
- package/src/components/frontStore/customer/address/addressForm/ProvinceAndPostcode.jsx +75 -75
- package/src/components/frontStore/customer/checkout/Edit.jsx +99 -94
- package/src/components/frontStore/customer/detail/Order.jsx +78 -78
- package/src/components/frontStore/paypal/PaypalLogo.jsx +24 -24
- package/src/components/frontStore/stripe/StripeLogo.jsx +24 -24
- package/src/components/frontStore/stripe/checkout/CheckoutForm.jsx +209 -221
- package/src/components/frontStore/stripe/checkout/CheckoutForm.scss +24 -29
- package/src/components/frontStore/stripe/checkout/TestCards.jsx +96 -96
- package/src/components/frontStore/widgets/BasicMenu.jsx +129 -129
- package/src/components/frontStore/widgets/CollectionProducts.jsx +92 -94
- package/src/components/frontStore/widgets/TextBlock.jsx +46 -46
- package/src/lib/babel/config.js +16 -16
- package/src/lib/babel/index.js +3 -3
- package/src/lib/bundlee.js +256 -256
- package/src/lib/componee/getComponentsByRoute.js +34 -34
- package/src/lib/componee/scanForComponents.js +98 -98
- package/src/lib/componee/tests/unit/scanRouteComponents.test.js +136 -136
- package/src/lib/event/callSubscibers.js +22 -22
- package/src/lib/event/emitter.js +11 -11
- package/src/lib/event/event-manager.js +113 -113
- package/src/lib/event/loadSubscribers.js +54 -54
- package/src/lib/helpers.js +17 -17
- package/src/lib/locale/countries.js +248 -248
- package/src/lib/locale/currencies.js +170 -170
- package/src/lib/locale/provinces.js +3595 -3595
- package/src/lib/locale/timezones.js +1085 -1085
- package/src/lib/locale/translate/index.js +10 -10
- package/src/lib/locale/translate/translate.js +30 -30
- package/src/lib/log/CustomColorize.js +22 -22
- package/src/lib/log/logger.js +158 -158
- package/src/lib/middleware/Handler.js +145 -145
- package/src/lib/middleware/addMiddleware.js +14 -14
- package/src/lib/middleware/async.js +43 -43
- package/src/lib/middleware/buildMiddlewareFunction.js +82 -82
- package/src/lib/middleware/delegate.js +22 -22
- package/src/lib/middleware/eNext.js +16 -16
- package/src/lib/middleware/findDublicatedMiddleware.js +22 -22
- package/src/lib/middleware/getRouteFromPath.js +48 -48
- package/src/lib/middleware/index.js +102 -102
- package/src/lib/middleware/isErrorHandlerTriggered.js +7 -7
- package/src/lib/middleware/isNextRequired.js +6 -6
- package/src/lib/middleware/noDuplicateId.js +23 -23
- package/src/lib/middleware/parseFromFile.js +79 -79
- package/src/lib/middleware/scanForMiddlewareFunctions.js +31 -31
- package/src/lib/middleware/sort.js +49 -49
- package/src/lib/middleware/sync.js +42 -42
- package/src/lib/middleware/tests/app/app.js +96 -96
- package/src/lib/middleware/tests/app/modules/404page/pages/frontStore/product/[loadProduct]loadCategory.js +3 -3
- package/src/lib/middleware/tests/app/modules/404page/pages/frontStore/product/[loadProduct]loadProductImage.js +5 -5
- package/src/lib/middleware/tests/app/modules/404page/pages/frontStore/product/loadProduct.js +10 -10
- package/src/lib/middleware/tests/app/modules/404page/pages/frontStore/product/route.json +5 -5
- package/src/lib/middleware/tests/app/modules/api/api/createA/index.js +3 -3
- package/src/lib/middleware/tests/app/modules/api/api/createA/route.json +4 -4
- package/src/lib/middleware/tests/app/modules/api/api/global/apiGlobal.js +3 -3
- package/src/lib/middleware/tests/app/modules/authcopy/api/createA/[index]afterIndex.js +3 -3
- package/src/lib/middleware/tests/app/modules/authcopy/api/global/[context]auth.js +3 -3
- package/src/lib/middleware/tests/app/modules/authcopy/api/global/apiAuthGlobal.js +3 -3
- package/src/lib/middleware/tests/app/modules/authcopy/pages/global/[context]auth.js +1 -1
- package/src/lib/middleware/tests/app/modules/basecopy/api/global/[apiResponse]apiErrorHandler.js +3 -3
- package/src/lib/middleware/tests/app/modules/basecopy/api/global/[auth]apiResponse[apiErrorHandler].js +3 -3
- package/src/lib/middleware/tests/app/modules/basecopy/api/global/[auth]payloadValidate.js +3 -3
- package/src/lib/middleware/tests/app/modules/basecopy/api/global/[payloadValidate]escapeHtml.js +3 -3
- package/src/lib/middleware/tests/app/modules/basecopy/api/global/context.js +38 -38
- package/src/lib/middleware/tests/app/modules/basecopy/pages/admin/adminStaticAsset/route.json +4 -4
- package/src/lib/middleware/tests/app/modules/basecopy/pages/admin/adminStaticAsset/staticAssets.js +3 -3
- package/src/lib/middleware/tests/app/modules/basecopy/pages/admin/all/adminTitle.js +1 -1
- package/src/lib/middleware/tests/app/modules/basecopy/pages/frontStore/all/title.js +1 -1
- package/src/lib/middleware/tests/app/modules/basecopy/pages/frontStore/notFound/route.json +4 -4
- package/src/lib/middleware/tests/app/modules/basecopy/pages/frontStore/staticAsset/[context]staticAssets[auth].js +3 -3
- package/src/lib/middleware/tests/app/modules/basecopy/pages/frontStore/staticAsset/route.json +4 -4
- package/src/lib/middleware/tests/app/modules/basecopy/pages/global/{[notification]notFound[response].js → [auth]notFound[response].js} +4 -4
- package/src/lib/middleware/tests/app/modules/basecopy/pages/global/[notFound]dummy[response].js +3 -3
- package/src/lib/middleware/tests/app/modules/basecopy/pages/global/[response]errorHandler.js +4 -4
- package/src/lib/middleware/tests/app/modules/basecopy/pages/global/context.js +37 -37
- package/src/lib/middleware/tests/app/modules/basecopy/pages/global/response[errorHandler].js +4 -4
- package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/asyncWithNext[collection].js +8 -8
- package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/async[collection].js +7 -7
- package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/collection.js +9 -9
- package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/returnOne[returnTwo].js +3 -3
- package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/returnThree[collection].js +3 -3
- package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/returnTwo[returnThree].js +5 -5
- package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/route.json +4 -4
- package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/syncWithNext[collection].js +5 -5
- package/src/lib/middleware/tests/app/modules/delegate/pages/frontStore/delegateTest/sync[collection].js +5 -5
- package/src/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInAsync.js +5 -5
- package/src/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInAsyncWithNext.js +12 -12
- package/src/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInSync.js +5 -5
- package/src/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/errorInSyncWithNext.js +5 -5
- package/src/lib/middleware/tests/app/modules/error/pages/frontStore/errorHandlerTest/route.json +4 -4
- package/src/lib/middleware/tests/app/modules/graphqlcopy/pages/global/[bodyParser]buildQuery[graphql].js +1 -1
- package/src/lib/middleware/tests/app/modules/graphqlcopy/pages/global/{[buildQuery]graphql[notification].js → [buildQuery]graphql[notFound].js} +1 -1
- package/src/lib/middleware/tests/app/modules/graphqlcopy/pages/global/bodyParser[buildQuery].js +7 -7
- package/src/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/[loadProduct]loadCategory.js +3 -3
- package/src/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/[loadProduct]loadProductImage.js +5 -5
- package/src/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/loadProduct.js +10 -10
- package/src/lib/middleware/tests/app/modules/handler/pages/admin/productEdit/route.json +4 -4
- package/src/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadAttribute]loadOptions.js +3 -3
- package/src/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadProductImage]loadAttribute.js +5 -5
- package/src/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadProduct]loadCategory.js +3 -3
- package/src/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/[loadProduct]loadProductImage.js +5 -5
- package/src/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/loadProduct.js +5 -5
- package/src/lib/middleware/tests/app/modules/handler/pages/frontStore/middleware/route.json +4 -4
- package/src/lib/middleware/tests/unit/404page.handling.test.js +59 -59
- package/src/lib/middleware/tests/unit/500error.handling.test.js +36 -36
- package/src/lib/middleware/tests/unit/apiHandler.middleware.test.js +38 -38
- package/src/lib/middleware/tests/unit/delegate.test.js +34 -34
- package/src/lib/middleware/tests/unit/handler.getMiddlewaresByRoute.test.js +70 -70
- package/src/lib/middleware/tests/unit/handler.middleware.test.js +39 -39
- package/src/lib/middleware/tests/unit/middleware.buildMiddlewareFunction.test.js +107 -107
- package/src/lib/middleware/tests/unit/middleware.getRouteFromPath.test.js +145 -145
- package/src/lib/middleware/tests/unit/middleware.noDublicateId.test.js +159 -159
- package/src/lib/middleware/tests/unit/middleware.scanForMiddlewareFunctions.test.js +123 -123
- package/src/lib/middlewares/bodyJson.js +5 -5
- package/src/lib/middlewares/multerNone.js +7 -7
- package/src/lib/middlewares/publicStatic.js +27 -27
- package/src/lib/middlewares/static.js +43 -43
- package/src/lib/middlewares/themePublicStatic.js +35 -35
- package/src/lib/pathToRegexp.js +215 -215
- package/src/lib/postgres/connection.js +70 -70
- package/src/lib/response/render.js +117 -112
- package/src/lib/router/Router.js +40 -40
- package/src/lib/router/buildAbsoluteUrl.js +24 -24
- package/src/lib/router/buildUrl.js +28 -28
- package/src/lib/router/loadModuleRoutes.js +64 -64
- package/src/lib/router/registerAdminRoute.js +34 -34
- package/src/lib/router/registerFrontStoreRoute.js +37 -37
- package/src/lib/router/scanForRoutes.js +88 -88
- package/src/lib/router/tests/unit/a/invalidMethod/routeOne/route.json +4 -4
- package/src/lib/router/tests/unit/a/invalidPath/routeTwo/route.json +4 -4
- package/src/lib/router/tests/unit/b/routeOne/route.json +4 -4
- package/src/lib/router/tests/unit/b/routeThree/route.json +4 -4
- package/src/lib/router/tests/unit/b/routeTwo/route.json +4 -4
- package/src/lib/router/tests/unit/unit.scanForRoutes.test.js +23 -23
- package/src/lib/router/tests/unit/unit.validateRoute.test.js +31 -31
- package/src/lib/router/validateRoute.js +26 -26
- package/src/lib/util/assign.js +39 -39
- package/src/lib/util/buildFilterFromUrl.js +46 -46
- package/src/lib/util/camelCase.js +17 -17
- package/src/lib/util/defaultPaginationFilters.js +104 -104
- package/src/lib/util/events.js +3 -3
- package/src/lib/util/filterOperationMapp.js +16 -16
- package/src/lib/util/formData.js +30 -30
- package/src/lib/util/formToJson.js +58 -58
- package/src/lib/util/get.js +27 -27
- package/src/lib/util/getConfig.js +17 -17
- package/src/lib/util/getEnabledWidgets.js +34 -28
- package/src/lib/util/getEnv.js +6 -6
- package/src/lib/util/hookable.js +109 -120
- package/src/lib/util/httpStatus.js +13 -13
- package/src/lib/util/isAjax.js +13 -13
- package/src/lib/util/isDevelopmentMode.js +1 -1
- package/src/lib/util/isProductionMode.js +1 -1
- package/src/lib/util/merge.js +82 -82
- package/src/lib/util/passwordHelper.js +59 -59
- package/src/lib/util/readCsvFile.js +25 -25
- package/src/lib/util/registry.js +243 -243
- package/src/lib/util/tests/unit/util.assign.test.js +42 -42
- package/src/lib/util/tests/unit/util.get.test.js +26 -26
- package/src/lib/util/tests/unit/util.getConfig.test.js +9 -9
- package/src/lib/util/tests/unit/util.hookable.test.js +188 -188
- package/src/lib/util/tests/unit/util.merge.test.js +55 -55
- package/src/lib/util/tests/unit/util.registry.test.js +202 -202
- package/src/lib/util/throwIf.js +7 -0
- package/src/lib/util/validateConfiguration.js +83 -83
- package/src/lib/webpack/createBaseConfig.js +189 -189
- package/src/lib/webpack/dev/createConfigClient.js +117 -111
- package/src/lib/webpack/getRouteBuildPath.js +8 -8
- package/src/lib/webpack/getRouteBuildSubPath.js +4 -4
- package/src/lib/webpack/isBuildRequired.js +7 -7
- package/src/lib/webpack/loaders/AreaLoader.js +63 -64
- package/src/lib/webpack/loaders/GraphQLAPILoader.js +15 -15
- package/src/lib/webpack/loaders/GraphqlLoader.js +14 -14
- package/src/lib/webpack/loaders/LayoutLoader.js +9 -9
- package/src/lib/webpack/loaders/StyleLoader.js +5 -5
- package/src/lib/webpack/loaders/TailwindLoader.js +53 -61
- package/src/lib/webpack/loaders/TranslationLoader.js +24 -24
- package/src/lib/webpack/loaders/loadTranslationFromCsv.js +47 -47
- package/src/lib/webpack/plugins/FileListPlugin.js +43 -43
- package/src/lib/webpack/plugins/GraphqlPlugin.js +29 -29
- package/src/lib/webpack/plugins/Tailwindcss.js +94 -96
- package/src/lib/webpack/prod/createConfigClient.js +101 -95
- package/src/lib/webpack/prod/createConfigServer.js +46 -46
- package/src/lib/webpack/resolveAlias.js +71 -71
- package/src/lib/webpack/tests/unit/resolveAlias.test.js +52 -52
- package/src/lib/webpack/util/getTailwindConfig.js +33 -33
- package/src/lib/webpack/util/keyGenerator.js +9 -0
- package/src/lib/webpack/util/parseGraphql.js +102 -101
- package/src/lib/webpack/util/parseGraphqlByFile.js +218 -218
- package/src/modules/auth/api/global/[context]getCurrentUser.js +58 -58
- package/src/modules/auth/api/global/[getCurrentUser]auth.js +52 -52
- package/src/modules/auth/api/global/[getCurrentUser]demoAccountBlocking[auth].js +28 -28
- package/src/modules/auth/bootstrap.js +24 -47
- package/src/modules/auth/graphql/types/AdminUser/AdminUser.admin.graphql +26 -26
- package/src/modules/auth/graphql/types/AdminUser/AdminUser.admin.resolvers.js +90 -90
- package/src/modules/auth/migration/Version-1.0.0.js +34 -34
- package/src/modules/auth/migration/Version-1.0.1.js +24 -24
- package/src/modules/auth/pages/admin/adminLogin/LoginForm.jsx +104 -104
- package/src/modules/auth/pages/admin/adminLogin/LoginForm.scss +53 -53
- package/src/modules/auth/pages/admin/adminLogin/index.js +19 -19
- package/src/modules/auth/pages/admin/adminLogin/route.json +4 -4
- package/src/modules/auth/pages/admin/adminLoginJson/[bodyParser]logIn.js +43 -43
- package/src/modules/auth/pages/admin/adminLoginJson/payloadSchema.json +20 -20
- package/src/modules/auth/pages/admin/adminLoginJson/route.json +6 -6
- package/src/modules/auth/pages/admin/adminLogoutJson/logout.js +35 -35
- package/src/modules/auth/pages/admin/adminLogoutJson/route.json +4 -4
- package/src/modules/auth/pages/admin/all/AdminUser.jsx +94 -90
- package/src/modules/auth/pages/admin/all/AdminUser.scss +20 -20
- package/src/modules/auth/pages/admin/all/[context]auth.js +34 -34
- package/src/modules/auth/services/getAdminSessionCookieName.js +4 -4
- package/src/modules/auth/services/getCookieSecret.js +3 -3
- package/src/modules/auth/services/getFrontStoreSessionCookieName.js +4 -4
- package/src/modules/auth/services/getSessionConfig.js +20 -20
- package/src/modules/auth/services/loginUserWithEmail.js +31 -0
- package/src/modules/auth/services/logoutUser.js +9 -0
- package/src/modules/base/api/global/[apiResponse]apiErrorHandler.js +38 -38
- package/src/modules/base/api/global/[auth]apiResponse[apiErrorHandler].js +34 -34
- package/src/modules/base/api/global/[auth]payloadValidate.js +47 -47
- package/src/modules/base/api/global/[payloadValidate]escapeHtml.js +12 -12
- package/src/modules/base/api/global/context.js +40 -40
- package/src/modules/base/bootstrap.js +107 -86
- package/src/modules/base/graphql/types/Country/Country.graphql +13 -13
- package/src/modules/base/graphql/types/Country/Country.resolvers.js +44 -44
- package/src/modules/base/graphql/types/Currency/Currency.graphql +11 -11
- package/src/modules/base/graphql/types/Currency/Currency.resolvers.js +7 -7
- package/src/modules/base/graphql/types/DateTime/DateTime.graphql +8 -8
- package/src/modules/base/graphql/types/DateTime/DateTime.resolvers.js +24 -24
- package/src/modules/base/graphql/types/Province/Province.graphql +12 -12
- package/src/modules/base/graphql/types/Province/Province.resolvers.js +38 -38
- package/src/modules/base/graphql/types/Route/Route.admin.graphql +15 -15
- package/src/modules/base/graphql/types/Route/Route.admin.resolvers.js +10 -10
- package/src/modules/base/graphql/types/Timezone/Timezone.graphql +11 -11
- package/src/modules/base/graphql/types/Timezone/Timezone.resolvers.js +7 -7
- package/src/modules/base/graphql/types/Url/Url.graphql +11 -11
- package/src/modules/base/graphql/types/Url/Url.resolvers.js +18 -18
- package/src/modules/base/graphql/types/Version/Version.graphql +3 -0
- package/src/modules/base/graphql/types/Version/Version.resolvers.js +7 -0
- package/src/modules/base/migration/Version-1.0.1.js +16 -16
- package/src/modules/base/pages/admin/all/[context]isAdmin[auth].js +4 -4
- package/src/modules/base/pages/global/{[notification]notFound[response].js → [auth]notFound[response].js} +16 -16
- package/src/modules/base/pages/global/[response]errorHandler.js +36 -36
- package/src/modules/base/pages/global/context.js +41 -41
- package/src/modules/base/pages/global/response[errorHandler].js +93 -90
- package/src/modules/base/services/escapePayload.js +34 -34
- package/src/modules/base/services/getAjv.js +19 -19
- package/src/modules/base/services/markSkipEscape.js +30 -30
- package/src/modules/base/services/notifications.js +25 -0
- package/src/modules/base/services/secret.js +4 -4
- package/src/modules/catalog/api/addProductToCategory/[context]bodyParser[auth].js +5 -5
- package/src/modules/catalog/api/addProductToCategory/addProducts.js +80 -80
- package/src/modules/catalog/api/addProductToCategory/payloadSchema.json +12 -12
- package/src/modules/catalog/api/addProductToCategory/route.json +5 -5
- package/src/modules/catalog/api/addProductToCollection/[context]bodyParser[auth].js +5 -5
- package/src/modules/catalog/api/addProductToCollection/addProducts.js +102 -102
- package/src/modules/catalog/api/addProductToCollection/payloadSchema.json +12 -12
- package/src/modules/catalog/api/addProductToCollection/route.json +5 -5
- package/src/modules/catalog/api/addVariantItem/[bodyParser]addItem.js +121 -121
- package/src/modules/catalog/api/addVariantItem/[context]bodyParser[auth].js +5 -5
- package/src/modules/catalog/api/addVariantItem/payloadSchema.json +10 -10
- package/src/modules/catalog/api/addVariantItem/route.json +5 -5
- package/src/modules/catalog/api/createAttribute/[context]bodyParser[auth].js +5 -5
- package/src/modules/catalog/api/createAttribute/createAttribute[finish].js +9 -9
- package/src/modules/catalog/api/createAttribute/finish[apiResponse].js +27 -27
- package/src/modules/catalog/api/createAttribute/payloadSchema.json +59 -59
- package/src/modules/catalog/api/createAttribute/route.json +5 -5
- package/src/modules/catalog/api/createAttributeGroup/[bodyParser]saveGroup.js +49 -49
- package/src/modules/catalog/api/createAttributeGroup/[context]bodyParser[auth].js +5 -5
- package/src/modules/catalog/api/createAttributeGroup/payloadSchema.json +10 -10
- package/src/modules/catalog/api/createAttributeGroup/route.json +5 -5
- package/src/modules/catalog/api/createCategory/[context]bodyParser[auth].js +5 -5
- package/src/modules/catalog/api/createCategory/createCategory[finish].js +9 -9
- package/src/modules/catalog/api/createCategory/finish[apiResponse].js +33 -33
- package/src/modules/catalog/api/createCategory/payloadSchema.json +10 -10
- package/src/modules/catalog/api/createCategory/route.json +5 -5
- package/src/modules/catalog/api/createCollection/[context]bodyParser[auth].js +5 -5
- package/src/modules/catalog/api/createCollection/createCollection[finish].js +9 -9
- package/src/modules/catalog/api/createCollection/finish[apiResponse].js +27 -27
- package/src/modules/catalog/api/createCollection/payloadSchema.json +10 -10
- package/src/modules/catalog/api/createCollection/route.json +5 -5
- package/src/modules/catalog/api/createProduct/[context]bodyParser[auth].js +5 -5
- package/src/modules/catalog/api/createProduct/createProduct[finish].js +9 -9
- package/src/modules/catalog/api/createProduct/finish[apiResponse].js +33 -33
- package/src/modules/catalog/api/createProduct/payloadSchema.json +10 -10
- package/src/modules/catalog/api/createProduct/route.json +5 -5
- package/src/modules/catalog/api/createVariantGroup/[bodyParser]saveGroup.js +138 -138
- package/src/modules/catalog/api/createVariantGroup/[context]bodyParser[auth].js +5 -5
- package/src/modules/catalog/api/createVariantGroup/payloadSchema.json +17 -17
- package/src/modules/catalog/api/createVariantGroup/route.json +5 -5
- package/src/modules/catalog/api/deleteAttribute/deleteAttribute.js +27 -27
- package/src/modules/catalog/api/deleteAttribute/route.json +5 -5
- package/src/modules/catalog/api/deleteAttributeGroup/deleteAttributeGroup.js +58 -58
- package/src/modules/catalog/api/deleteAttributeGroup/route.json +5 -5
- package/src/modules/catalog/api/deleteCategory/deleteCategory.js +27 -27
- package/src/modules/catalog/api/deleteCategory/route.json +5 -5
- package/src/modules/catalog/api/deleteCollection/deleteCollection.js +27 -27
- package/src/modules/catalog/api/deleteCollection/route.json +5 -5
- package/src/modules/catalog/api/deleteProduct/deleteProduct.js +27 -27
- package/src/modules/catalog/api/deleteProduct/route.json +5 -5
- package/src/modules/catalog/api/removeProductFromCategory/[context]bodyParser[auth].js +5 -5
- package/src/modules/catalog/api/removeProductFromCategory/removeProducts.js +59 -59
- package/src/modules/catalog/api/removeProductFromCategory/route.json +5 -5
- package/src/modules/catalog/api/removeProductFromCollection/[context]bodyParser[auth].js +5 -5
- package/src/modules/catalog/api/removeProductFromCollection/removeProducts.js +88 -88
- package/src/modules/catalog/api/removeProductFromCollection/route.json +5 -5
- package/src/modules/catalog/api/unlinkVariant/[context]multerNone[auth].js +7 -7
- package/src/modules/catalog/api/unlinkVariant/route.json +5 -5
- package/src/modules/catalog/api/unlinkVariant/unlinkVariants.js +29 -29
- package/src/modules/catalog/api/updateAttribute/[context]bodyParser[auth].js +5 -5
- package/src/modules/catalog/api/updateAttribute/finish[apiResponse].js +27 -27
- package/src/modules/catalog/api/updateAttribute/route.json +5 -5
- package/src/modules/catalog/api/updateAttribute/updateAttribute[finish].js +7 -7
- package/src/modules/catalog/api/updateAttributeGroup/[bodyParser]saveGroup.js +48 -48
- package/src/modules/catalog/api/updateAttributeGroup/[context]bodyParser[auth].js +5 -5
- package/src/modules/catalog/api/updateAttributeGroup/payloadSchema.json +10 -10
- package/src/modules/catalog/api/updateAttributeGroup/route.json +5 -5
- package/src/modules/catalog/api/updateCategory/[context]bodyParser[auth].js +5 -5
- package/src/modules/catalog/api/updateCategory/finish[apiResponse].js +33 -33
- package/src/modules/catalog/api/updateCategory/payloadSchema.json +10 -10
- package/src/modules/catalog/api/updateCategory/route.json +5 -5
- package/src/modules/catalog/api/updateCategory/updateCategory[finish].js +9 -9
- package/src/modules/catalog/api/updateCollection/[context]bodyParser[auth].js +5 -5
- package/src/modules/catalog/api/updateCollection/finish[apiResponse].js +27 -27
- package/src/modules/catalog/api/updateCollection/payloadSchema.json +10 -10
- package/src/modules/catalog/api/updateCollection/route.json +5 -5
- package/src/modules/catalog/api/updateCollection/updateCollection[finish].js +9 -9
- package/src/modules/catalog/api/updateProduct/[context]bodyParser[auth].js +5 -5
- package/src/modules/catalog/api/updateProduct/finish[apiResponse].js +33 -33
- package/src/modules/catalog/api/updateProduct/payloadSchema.json +10 -10
- package/src/modules/catalog/api/updateProduct/route.json +5 -5
- package/src/modules/catalog/api/updateProduct/updateProduct[finish].js +9 -9
- package/src/modules/catalog/api/variantSearch/loadVariants.js +88 -88
- package/src/modules/catalog/api/variantSearch/route.json +5 -5
- package/src/modules/catalog/bootstrap.js +216 -216
- package/src/modules/catalog/graphql/types/Attribute/Attribute.admin.graphql +42 -42
- package/src/modules/catalog/graphql/types/Attribute/Attribute.admin.resolvers.js +70 -70
- package/src/modules/catalog/graphql/types/Attribute/Attribute.graphql +28 -28
- package/src/modules/catalog/graphql/types/Attribute/Attribute.resolvers.js +28 -28
- package/src/modules/catalog/graphql/types/Category/Category.admin.graphql +9 -9
- package/src/modules/catalog/graphql/types/Category/Category.admin.resolvers.js +28 -28
- package/src/modules/catalog/graphql/types/Category/Category.graphql +105 -105
- package/src/modules/catalog/graphql/types/Category/Category.resolvers.js +196 -196
- package/src/modules/catalog/graphql/types/Collection/Collection.admin.graphql +10 -10
- package/src/modules/catalog/graphql/types/Collection/Collection.admin.resolvers.js +31 -31
- package/src/modules/catalog/graphql/types/Collection/Collection.graphql +30 -30
- package/src/modules/catalog/graphql/types/Collection/Collection.resolvers.js +85 -85
- package/src/modules/catalog/graphql/types/FeaturedProduct/FeaturedProduct.graphql +3 -3
- package/src/modules/catalog/graphql/types/FeaturedProduct/FeaturedProduct.resolvers.js +55 -55
- package/src/modules/catalog/graphql/types/Product/Attribute/ProductAttribute.graphql +15 -15
- package/src/modules/catalog/graphql/types/Product/Attribute/ProductAttribute.resolvers.js +42 -42
- package/src/modules/catalog/graphql/types/Product/CustomOption/CustomOption.graphql +23 -23
- package/src/modules/catalog/graphql/types/Product/CustomOption/CustomOption.resolvers.js +5 -5
- package/src/modules/catalog/graphql/types/Product/Image/ProductImage.graphql +18 -18
- package/src/modules/catalog/graphql/types/Product/Image/ProductImage.resolvers.js +38 -38
- package/src/modules/catalog/graphql/types/Product/Inventory/Inventory.admin.graphql +3 -3
- package/src/modules/catalog/graphql/types/Product/Inventory/Inventory.admin.resolvers.js +5 -5
- package/src/modules/catalog/graphql/types/Product/Inventory/Inventory.graphql +12 -12
- package/src/modules/catalog/graphql/types/Product/Inventory/Inventory.resolvers.js +11 -11
- package/src/modules/catalog/graphql/types/Product/Price/ProductPrice.graphql +11 -11
- package/src/modules/catalog/graphql/types/Product/Price/ProductPrice.resolvers.js +11 -11
- package/src/modules/catalog/graphql/types/Product/Product.admin.graphql +5 -5
- package/src/modules/catalog/graphql/types/Product/Product.admin.resolvers.js +9 -9
- package/src/modules/catalog/graphql/types/Product/Product.graphql +36 -36
- package/src/modules/catalog/graphql/types/Product/Product.resolvers.js +77 -77
- package/src/modules/catalog/graphql/types/Product/Variant/Variant.graphql +52 -52
- package/src/modules/catalog/graphql/types/Product/Variant/Variant.resolvers.js +153 -152
- package/src/modules/catalog/graphql/types/Widget/CollectionProductsWidget/CollectionProductsWidget.graphql +10 -10
- package/src/modules/catalog/graphql/types/Widget/CollectionProductsWidget/CollectionProductsWidget.resolvers.js +8 -8
- package/src/modules/catalog/migration/Version-1.0.0.js +685 -685
- package/src/modules/catalog/migration/Version-1.0.1.js +42 -42
- package/src/modules/catalog/migration/Version-1.0.2.js +270 -270
- package/src/modules/catalog/migration/Version-1.0.3.js +10 -10
- package/src/modules/catalog/migration/Version-1.0.4.js +211 -211
- package/src/modules/catalog/migration/Version-1.0.5.js +10 -10
- package/src/modules/catalog/migration/Version-1.0.6.js +69 -69
- package/src/modules/catalog/migration/Version-1.0.7.js +10 -10
- package/src/modules/catalog/pages/admin/all/CatalogMenuGroup.jsx +64 -64
- package/src/modules/catalog/pages/admin/all/NewProductQuickLink.jsx +23 -23
- package/src/modules/catalog/pages/admin/attributeEdit/AttributeEditForm.jsx +52 -52
- package/src/modules/catalog/pages/admin/attributeEdit/index.js +29 -29
- package/src/modules/catalog/pages/admin/attributeEdit/route.json +4 -4
- package/src/modules/catalog/pages/admin/attributeEdit+attributeNew/Avaibility.jsx +90 -90
- package/src/modules/catalog/pages/admin/attributeEdit+attributeNew/FormContent.jsx +58 -58
- package/src/modules/catalog/pages/admin/attributeEdit+attributeNew/FormContent.scss +7 -7
- package/src/modules/catalog/pages/admin/attributeEdit+attributeNew/General.jsx +341 -341
- package/src/modules/catalog/pages/admin/attributeEdit+attributeNew/PageHeading.jsx +41 -41
- package/src/modules/catalog/pages/admin/attributeGrid/Grid.jsx +394 -393
- package/src/modules/catalog/pages/admin/attributeGrid/Heading.jsx +11 -11
- package/src/modules/catalog/pages/admin/attributeGrid/NewAttributeButton.jsx +22 -22
- package/src/modules/catalog/pages/admin/attributeGrid/TypeRow.jsx +21 -21
- package/src/modules/catalog/pages/admin/attributeGrid/index.js +15 -15
- package/src/modules/catalog/pages/admin/attributeGrid/route.json +4 -4
- package/src/modules/catalog/pages/admin/attributeNew/AttributeNewForm.jsx +60 -60
- package/src/modules/catalog/pages/admin/attributeNew/index.js +11 -11
- package/src/modules/catalog/pages/admin/attributeNew/route.json +4 -4
- package/src/modules/catalog/pages/admin/categoryEdit/CategoryEditForm.jsx +52 -52
- package/src/modules/catalog/pages/admin/categoryEdit/Products.jsx +287 -287
- package/src/modules/catalog/pages/admin/categoryEdit/Products.scss +48 -48
- package/src/modules/catalog/pages/admin/categoryEdit/index.js +37 -37
- package/src/modules/catalog/pages/admin/categoryEdit/route.json +4 -4
- package/src/modules/catalog/pages/admin/categoryEdit+categoryNew/FormContent.jsx +58 -58
- package/src/modules/catalog/pages/admin/categoryEdit+categoryNew/FormContent.scss +7 -7
- package/src/modules/catalog/pages/admin/categoryEdit+categoryNew/General.jsx +231 -207
- package/src/modules/catalog/pages/admin/categoryEdit+categoryNew/Image.jsx +188 -188
- package/src/modules/catalog/pages/admin/categoryEdit+categoryNew/Image.scss +50 -50
- package/src/modules/catalog/pages/admin/categoryEdit+categoryNew/PageHeading.jsx +37 -37
- package/src/modules/catalog/pages/admin/categoryEdit+categoryNew/Seo.jsx +104 -104
- package/src/modules/catalog/pages/admin/categoryEdit+categoryNew/Status.jsx +75 -75
- package/src/modules/catalog/pages/admin/categoryGrid/Grid.jsx +335 -333
- package/src/modules/catalog/pages/admin/categoryGrid/Heading.jsx +11 -11
- package/src/modules/catalog/pages/admin/categoryGrid/NameRow.jsx +25 -25
- package/src/modules/catalog/pages/admin/categoryGrid/NewCategoryButton.jsx +22 -22
- package/src/modules/catalog/pages/admin/categoryGrid/index.js +15 -15
- package/src/modules/catalog/pages/admin/categoryGrid/route.json +4 -4
- package/src/modules/catalog/pages/admin/categoryNew/CategoryNewForm.jsx +60 -60
- package/src/modules/catalog/pages/admin/categoryNew/index.js +11 -11
- package/src/modules/catalog/pages/admin/categoryNew/route.json +4 -4
- package/src/modules/catalog/pages/admin/collectionEdit/CollectionEditForm.jsx +52 -52
- package/src/modules/catalog/pages/admin/collectionEdit/Products.jsx +289 -289
- package/src/modules/catalog/pages/admin/collectionEdit/Products.scss +48 -48
- package/src/modules/catalog/pages/admin/collectionEdit/index.js +28 -28
- package/src/modules/catalog/pages/admin/collectionEdit/route.json +4 -4
- package/src/modules/catalog/pages/admin/collectionEdit+collectionNew/FormContent.jsx +53 -53
- package/src/modules/catalog/pages/admin/collectionEdit+collectionNew/FormContent.scss +7 -7
- package/src/modules/catalog/pages/admin/collectionEdit+collectionNew/General.jsx +129 -116
- package/src/modules/catalog/pages/admin/collectionEdit+collectionNew/PageHeading.jsx +39 -39
- package/src/modules/catalog/pages/admin/collectionGrid/Grid.jsx +335 -329
- package/src/modules/catalog/pages/admin/collectionGrid/Heading.jsx +13 -13
- package/src/modules/catalog/pages/admin/collectionGrid/NameRow.jsx +25 -25
- package/src/modules/catalog/pages/admin/collectionGrid/NewCollectionButton.jsx +22 -22
- package/src/modules/catalog/pages/admin/collectionGrid/index.js +15 -15
- package/src/modules/catalog/pages/admin/collectionGrid/route.json +4 -4
- package/src/modules/catalog/pages/admin/collectionNew/CollectionNewForm.jsx +60 -60
- package/src/modules/catalog/pages/admin/collectionNew/index.js +11 -11
- package/src/modules/catalog/pages/admin/collectionNew/route.json +4 -4
- package/src/modules/catalog/pages/admin/productEdit/Collection.jsx +62 -56
- package/src/modules/catalog/pages/admin/productEdit/ProductEditForm.jsx +63 -63
- package/src/modules/catalog/pages/admin/productEdit/VariantGroup.jsx +93 -93
- package/src/modules/catalog/pages/admin/productEdit/index.js +36 -36
- package/src/modules/catalog/pages/admin/productEdit/route.json +4 -4
- package/src/modules/catalog/pages/admin/productEdit+productNew/Attributes.jsx +292 -287
- package/src/modules/catalog/pages/admin/productEdit+productNew/CustomOptions.jsss +164 -164
- package/src/modules/catalog/pages/admin/productEdit+productNew/FormContent.jsx +58 -58
- package/src/modules/catalog/pages/admin/productEdit+productNew/FormContent.scss +7 -7
- package/src/modules/catalog/pages/admin/productEdit+productNew/General.jsx +421 -339
- package/src/modules/catalog/pages/admin/productEdit+productNew/Inventory.jsx +92 -92
- package/src/modules/catalog/pages/admin/productEdit+productNew/Media.jsx +67 -66
- package/src/modules/catalog/pages/admin/productEdit+productNew/PageHeading.jsx +37 -37
- package/src/modules/catalog/pages/admin/productEdit+productNew/Seo.jsx +104 -104
- package/src/modules/catalog/pages/admin/productEdit+productNew/Status.jsx +69 -69
- package/src/modules/catalog/pages/admin/productGrid/Grid.jsx +578 -573
- package/src/modules/catalog/pages/admin/productGrid/Heading.jsx +11 -11
- package/src/modules/catalog/pages/admin/productGrid/NewProductButton.jsx +22 -22
- package/src/modules/catalog/pages/admin/productGrid/index.js +15 -15
- package/src/modules/catalog/pages/admin/productGrid/route.json +4 -4
- package/src/modules/catalog/pages/admin/productNew/ProductNewForm.jsx +67 -67
- package/src/modules/catalog/pages/admin/productNew/index.js +11 -11
- package/src/modules/catalog/pages/admin/productNew/route.json +4 -4
- package/src/modules/catalog/pages/frontStore/all/SearchBox.jsx +118 -112
- package/src/modules/catalog/pages/frontStore/all/SearchBox.scss +40 -40
- package/src/modules/catalog/pages/frontStore/catalogSearch/General.jsx +32 -32
- package/src/modules/catalog/pages/frontStore/catalogSearch/General.scss +5 -5
- package/src/modules/catalog/pages/frontStore/catalogSearch/Pagination.jsx +52 -52
- package/src/modules/catalog/pages/frontStore/catalogSearch/Products.jsx +88 -88
- package/src/modules/catalog/pages/frontStore/catalogSearch/SearchPage.jsx +15 -15
- package/src/modules/catalog/pages/frontStore/catalogSearch/Sorting.jsx +11 -11
- package/src/modules/catalog/pages/frontStore/catalogSearch/[index]filters.js +11 -11
- package/src/modules/catalog/pages/frontStore/catalogSearch/index.js +23 -23
- package/src/modules/catalog/pages/frontStore/catalogSearch/route.json +5 -5
- package/src/modules/catalog/pages/frontStore/categoryView/CategoryView.jsx +33 -33
- package/src/modules/catalog/pages/frontStore/categoryView/Filter.jsx +256 -256
- package/src/modules/catalog/pages/frontStore/categoryView/Filter.scss +142 -142
- package/src/modules/catalog/pages/frontStore/categoryView/General.jsx +65 -52
- package/src/modules/catalog/pages/frontStore/categoryView/General.scss +24 -24
- package/src/modules/catalog/pages/frontStore/categoryView/Pagination.jsx +65 -65
- package/src/modules/catalog/pages/frontStore/categoryView/Products.jsx +106 -106
- package/src/modules/catalog/pages/frontStore/categoryView/Sorting.jsx +11 -11
- package/src/modules/catalog/pages/frontStore/categoryView/[index]filters.js +11 -11
- package/src/modules/catalog/pages/frontStore/categoryView/index.js +36 -36
- package/src/modules/catalog/pages/frontStore/categoryView/route.json +5 -5
- package/src/modules/catalog/pages/frontStore/productView/Attributes.jsx +51 -51
- package/src/modules/catalog/pages/frontStore/productView/Description.jsx +43 -32
- package/src/modules/catalog/pages/frontStore/productView/Form.jsx +236 -232
- package/src/modules/catalog/pages/frontStore/productView/Form.scss +71 -71
- package/src/modules/catalog/pages/frontStore/productView/GeneralInfo.jsx +83 -83
- package/src/modules/catalog/pages/frontStore/productView/GeneralInfo.scss +3 -3
- package/src/modules/catalog/pages/frontStore/productView/Images.jsx +114 -110
- package/src/modules/catalog/pages/frontStore/productView/Layout.jsx +22 -22
- package/src/modules/catalog/pages/frontStore/productView/Options.jsx +110 -106
- package/src/modules/catalog/pages/frontStore/productView/Variants.jsx +272 -272
- package/src/modules/catalog/pages/frontStore/productView/Variants.scss +23 -23
- package/src/modules/catalog/pages/frontStore/productView/index.js +159 -159
- package/src/modules/catalog/pages/frontStore/productView/route.json +5 -5
- package/src/modules/catalog/services/AttributeCollection.js +59 -59
- package/src/modules/catalog/services/AttributeGroupCollection.js +100 -100
- package/src/modules/catalog/services/CategoryCollection.js +66 -66
- package/src/modules/catalog/services/CollectionCollection.js +60 -60
- package/src/modules/catalog/services/ProductCollection.js +143 -143
- package/src/modules/catalog/services/attribute/attributeDataSchema.json +60 -60
- package/src/modules/catalog/services/attribute/createProductAttribute.js +150 -150
- package/src/modules/catalog/services/attribute/deleteProductAttribute.js +67 -67
- package/src/modules/catalog/services/attribute/updateProductAttribute.js +227 -227
- package/src/modules/catalog/services/category/categoryDataSchema.json +59 -59
- package/src/modules/catalog/services/category/createCategory.js +95 -95
- package/src/modules/catalog/services/category/deleteCategory.js +59 -59
- package/src/modules/catalog/services/category/updateCategory.js +110 -110
- package/src/modules/catalog/services/collection/collectionDataSchema.json +20 -20
- package/src/modules/catalog/services/collection/createCollection.js +74 -74
- package/src/modules/catalog/services/collection/deleteCollection.js +51 -51
- package/src/modules/catalog/services/collection/updateCollection.js +102 -102
- package/src/modules/catalog/services/getAttributeGroupsBaseQuery.js +3 -3
- package/src/modules/catalog/services/getAttributesBaseQuery.js +3 -3
- package/src/modules/catalog/services/getCategoriesBaseQuery.js +14 -14
- package/src/modules/catalog/services/getCollectionsBaseQuery.js +6 -6
- package/src/modules/catalog/services/getFilterableAttributes.js +77 -77
- package/src/modules/catalog/services/getProductsBaseQuery.js +26 -26
- package/src/modules/catalog/services/getProductsByCategoryBaseQuery.js +30 -30
- package/src/modules/catalog/services/getProductsByCollectionBaseQuery.js +12 -12
- package/src/modules/catalog/services/product/createProduct.js +232 -232
- package/src/modules/catalog/services/product/deleteProduct.js +74 -74
- package/src/modules/catalog/services/product/productDataSchema.json +150 -149
- package/src/modules/catalog/services/product/updateProduct.js +393 -393
- package/src/modules/catalog/services/registerCartItemProductUrlField.js +35 -35
- package/src/modules/catalog/services/registerCartItemVariantOptionsField.js +51 -51
- package/src/modules/catalog/services/registerDefaultAttributeCollectionFilters.js +149 -149
- package/src/modules/catalog/services/registerDefaultCategoryCollectionFilters.js +101 -101
- package/src/modules/catalog/services/registerDefaultCollectionCollectionFilters.js +65 -65
- package/src/modules/catalog/services/registerDefaultProductCollectionFilters.js +219 -219
- package/src/modules/catalog/subscribers/category_created/buildUrlRewrite.js +58 -58
- package/src/modules/catalog/subscribers/category_deleted/deleteUrlRewrite.js +32 -32
- package/src/modules/catalog/subscribers/category_updated/builUrlRewrite.js +71 -71
- package/src/modules/catalog/subscribers/product_created/builUrlRewrite.js +61 -61
- package/src/modules/catalog/subscribers/product_deleted/deleteUrlRewrite.js +12 -12
- package/src/modules/catalog/subscribers/product_image_added/localGenerateProductImageVariant.js +62 -62
- package/src/modules/catalog/subscribers/product_updated/buildUrlRewrite.js +56 -56
- package/src/modules/catalog/tests/intergration/productView.test.js +21 -21
- package/src/modules/checkout/api/addCartAddress/[context]bodyParser[auth].js +5 -5
- package/src/modules/checkout/api/addCartAddress/payloadSchema.json +23 -23
- package/src/modules/checkout/api/addCartAddress/route.json +5 -5
- package/src/modules/checkout/api/addCartAddress/saveAddress.js +95 -95
- package/src/modules/checkout/api/addCartContactInfo/[context]bodyParser[auth].js +5 -5
- package/src/modules/checkout/api/addCartContactInfo/payloadSchema.json +17 -17
- package/src/modules/checkout/api/addCartContactInfo/route.json +5 -5
- package/src/modules/checkout/api/addCartContactInfo/saveContactInfo.js +43 -43
- package/src/modules/checkout/api/addCartItem/[context]bodyParser[auth].js +5 -5
- package/src/modules/checkout/api/addCartItem/addItemToCart.js +71 -71
- package/src/modules/checkout/api/addCartItem/payloadSchema.json +20 -20
- package/src/modules/checkout/api/addCartItem/route.json +5 -5
- package/src/modules/checkout/api/addCartPaymentMethod/[context]bodyParser[auth].js +5 -5
- package/src/modules/checkout/api/addCartPaymentMethod/payloadSchema.json +20 -20
- package/src/modules/checkout/api/addCartPaymentMethod/route.json +5 -5
- package/src/modules/checkout/api/addCartPaymentMethod/savePaymentMethod.js +50 -50
- package/src/modules/checkout/api/addCartShippingMethod/[context]bodyParser[auth].js +5 -5
- package/src/modules/checkout/api/addCartShippingMethod/payloadSchema.json +15 -15
- package/src/modules/checkout/api/addCartShippingMethod/route.json +5 -5
- package/src/modules/checkout/api/addCartShippingMethod/saveShippingMethod.js +53 -53
- package/src/modules/checkout/api/addMineCartItem/[context]bodyParser[auth].js +5 -5
- package/src/modules/checkout/api/addMineCartItem/[detectCurrentCart]addItemToCart.js +78 -74
- package/src/modules/checkout/api/addMineCartItem/[getCurrentCustomer]detectCurrentCart.js +32 -32
- package/src/modules/checkout/api/addMineCartItem/payloadSchema.json +20 -20
- package/src/modules/checkout/api/addMineCartItem/route.json +5 -5
- package/src/modules/checkout/api/addShippingNote/[context]bodyParser[auth].js +5 -5
- package/src/modules/checkout/api/addShippingNote/payloadSchema.json +15 -15
- package/src/modules/checkout/api/addShippingNote/route.json +5 -5
- package/src/modules/checkout/api/addShippingNote/saveShippingNote.js +50 -50
- package/src/modules/checkout/api/addShippingZoneMethod/[context]borderParser[auth].js +5 -5
- package/src/modules/checkout/api/addShippingZoneMethod/{addShippingZoneMethod.js → [validateMethod]addShippingZoneMethod.js} +111 -117
- package/src/modules/checkout/api/addShippingZoneMethod/payloadSchema.json +82 -40
- package/src/modules/checkout/api/addShippingZoneMethod/route.json +5 -5
- package/src/modules/checkout/api/addShippingZoneMethod/validateMethod.js +35 -0
- package/src/modules/checkout/api/createCart/[context]bodyParser[auth].js +5 -5
- package/src/modules/checkout/api/createCart/createNewCart.js +117 -119
- package/src/modules/checkout/api/createCart/payloadSchema.json +44 -44
- package/src/modules/checkout/api/createCart/route.json +5 -5
- package/src/modules/checkout/api/createOrder/[context]bodyParser[auth].js +5 -5
- package/src/modules/checkout/api/createOrder/payloadSchema.json +15 -15
- package/src/modules/checkout/api/createOrder/placeOrder.js +89 -87
- package/src/modules/checkout/api/createOrder/route.json +5 -5
- package/src/modules/checkout/api/createShippingMethod/[context]borderParser[auth].js +5 -5
- package/src/modules/checkout/api/createShippingMethod/createShippingMethod.js +60 -60
- package/src/modules/checkout/api/createShippingMethod/payloadSchema.json +12 -12
- package/src/modules/checkout/api/createShippingMethod/route.json +5 -5
- package/src/modules/checkout/api/createShippingZone/[context]borderParser[auth].js +5 -5
- package/src/modules/checkout/api/createShippingZone/createShippingZone.js +55 -55
- package/src/modules/checkout/api/createShippingZone/payloadSchema.json +22 -22
- package/src/modules/checkout/api/createShippingZone/route.json +5 -5
- package/src/modules/checkout/api/deleteShippingZone/deleteShippingZone.js +58 -58
- package/src/modules/checkout/api/deleteShippingZone/route.json +5 -5
- package/src/modules/checkout/api/deleteShippingZoneMethod/deleteShippingZoneMethod.js +85 -85
- package/src/modules/checkout/api/deleteShippingZoneMethod/route.json +5 -5
- package/src/modules/checkout/api/getPaymentMethods/route.json +5 -5
- package/src/modules/checkout/api/getPaymentMethods/sendMethods.js +45 -45
- package/src/modules/checkout/api/getShippingMethods/route.json +5 -5
- package/src/modules/checkout/api/getShippingMethods/sendMethods.js +201 -201
- package/src/modules/checkout/api/removeCartItem/removeItem.js +43 -43
- package/src/modules/checkout/api/removeCartItem/route.json +5 -5
- package/src/modules/checkout/api/removeMineCartItem/[detectCurrentCart]removeItem.js +47 -47
- package/src/modules/checkout/api/removeMineCartItem/[getCurrentCustomer]detectCurrentCart.js +3 -3
- package/src/modules/checkout/api/removeMineCartItem/route.json +5 -5
- package/src/modules/checkout/api/updateCartItemQty/[bodyParser]updateQty.js +49 -49
- package/src/modules/checkout/api/updateCartItemQty/[context]bodyParser[auth].js +5 -5
- package/src/modules/checkout/api/updateCartItemQty/payloadSchema.json +21 -21
- package/src/modules/checkout/api/updateCartItemQty/route.json +5 -5
- package/src/modules/checkout/api/updateMineCartItemQty/[context]bodyParser[auth].js +5 -5
- package/src/modules/checkout/api/updateMineCartItemQty/[detectCurrentCart]updateQty.js +51 -51
- package/src/modules/checkout/api/updateMineCartItemQty/[getCurrentCustomer]detectCurrentCart.js +32 -32
- package/src/modules/checkout/api/updateMineCartItemQty/payloadSchema.json +21 -21
- package/src/modules/checkout/api/updateMineCartItemQty/route.json +5 -5
- package/src/modules/checkout/api/updateShippingMethod/[context]borderParser[auth].js +5 -5
- package/src/modules/checkout/api/updateShippingMethod/payloadSchema.json +12 -12
- package/src/modules/checkout/api/updateShippingMethod/route.json +5 -5
- package/src/modules/checkout/api/updateShippingMethod/updateShippingMethod.js +64 -64
- package/src/modules/checkout/api/updateShippingZone/[context]borderParser[auth].js +5 -5
- package/src/modules/checkout/api/updateShippingZone/payloadSchema.json +22 -22
- package/src/modules/checkout/api/updateShippingZone/route.json +5 -5
- package/src/modules/checkout/api/updateShippingZone/updateShippingZone.js +91 -91
- package/src/modules/checkout/api/updateShippingZoneMethod/[context]borderParser[auth].js +5 -5
- package/src/modules/checkout/api/updateShippingZoneMethod/{updateShippingZoneMethod.js → [validateMethod]updateShippingZoneMethod.js} +118 -118
- package/src/modules/checkout/api/updateShippingZoneMethod/payloadSchema.json +79 -79
- package/src/modules/checkout/api/updateShippingZoneMethod/route.json +5 -5
- package/src/modules/checkout/api/updateShippingZoneMethod/validateMethod.js +3 -0
- package/src/modules/checkout/bootstrap.js +63 -63
- package/src/modules/checkout/graphql/types/Cart/Cart.graphql +174 -175
- package/src/modules/checkout/graphql/types/Cart/Cart.resolvers.js +64 -64
- package/src/modules/checkout/graphql/types/Checkout/Checkout.graphql +10 -10
- package/src/modules/checkout/graphql/types/Checkout/Checkout.resolvers.js +7 -7
- package/src/modules/checkout/graphql/types/CheckoutSetting/CheckoutSetting.graphql +3 -3
- package/src/modules/checkout/graphql/types/CheckoutSetting/CheckoutSetting.resolvers.js +7 -7
- package/src/modules/checkout/graphql/types/Date/Date.graphql +7 -7
- package/src/modules/checkout/graphql/types/Date/Date.resolvers.js +8 -8
- package/src/modules/checkout/graphql/types/Price/Price.graphql +8 -8
- package/src/modules/checkout/graphql/types/Price/Price.resolvers.js +20 -20
- package/src/modules/checkout/graphql/types/ShippingMethod/ShippingMethod.graphql +12 -12
- package/src/modules/checkout/graphql/types/ShippingMethod/ShippingMethod.resolvers.js +19 -19
- package/src/modules/checkout/graphql/types/ShippingZone/ShippingZone.graphql +55 -55
- package/src/modules/checkout/graphql/types/ShippingZone/ShippingZone.resolvers.js +95 -95
- package/src/modules/checkout/graphql/types/Weight/Weight.graphql +8 -8
- package/src/modules/checkout/graphql/types/Weight/Weight.resolvers.js +17 -17
- package/src/modules/checkout/migration/Version-1.0.0.js +290 -289
- package/src/modules/checkout/migration/Version-1.0.1.js +87 -87
- package/src/modules/checkout/migration/Version-1.0.2.js +32 -32
- package/src/modules/checkout/migration/Version-1.0.3.js +25 -25
- package/src/modules/checkout/migration/Version-1.0.4.js +52 -52
- package/src/modules/checkout/migration/Version-1.0.5.js +28 -28
- package/src/modules/checkout/migration/Version-1.0.6.js +201 -201
- package/src/modules/checkout/pages/admin/all/ShippingSettingMenu.jsx +26 -26
- package/src/modules/checkout/pages/admin/shippingSetting/ShippingSetting.jsx +183 -187
- package/src/modules/checkout/pages/admin/shippingSetting/index.js +10 -10
- package/src/modules/checkout/pages/admin/shippingSetting/route.json +4 -4
- package/src/modules/checkout/pages/frontStore/all/MiniCart.jsx +44 -44
- package/src/modules/checkout/pages/frontStore/all/MiniCart.scss +21 -21
- package/src/modules/checkout/pages/frontStore/all/[auth]addCustomerToCart.js +32 -32
- package/src/modules/checkout/pages/frontStore/all/[context]detectCurrentCart[auth].js +47 -47
- package/src/modules/checkout/pages/frontStore/cart/ShoppingCart.jsx +143 -144
- package/src/modules/checkout/pages/frontStore/cart/Summary.jsx +202 -190
- package/src/modules/checkout/pages/frontStore/cart/Summary.scss +8 -8
- package/src/modules/checkout/pages/frontStore/cart/index.js +14 -14
- package/src/modules/checkout/pages/frontStore/cart/route.json +5 -5
- package/src/modules/checkout/pages/frontStore/checkout/Checkout.jsx +156 -156
- package/src/modules/checkout/pages/frontStore/checkout/Checkout.scss +43 -43
- package/src/modules/checkout/pages/frontStore/checkout/PaymentMethods.jsx +40 -40
- package/src/modules/checkout/pages/frontStore/checkout/PaymentStep.jsx +106 -90
- package/src/modules/checkout/pages/frontStore/checkout/ShipmentStep.jsx +167 -118
- package/src/modules/checkout/pages/frontStore/checkout/ShippingMethods.jsx +260 -252
- package/src/modules/checkout/pages/frontStore/checkout/ShippingNote.jsx +104 -105
- package/src/modules/checkout/pages/frontStore/checkout/Summary.jsx +132 -132
- package/src/modules/checkout/pages/frontStore/checkout/Summary.scss +51 -51
- package/src/modules/checkout/pages/frontStore/checkout/SummaryMobile.jsx +129 -129
- package/src/modules/checkout/pages/frontStore/checkout/SummaryMobile.scss +6 -6
- package/src/modules/checkout/pages/frontStore/checkout/index.js +28 -28
- package/src/modules/checkout/pages/frontStore/checkout/route.json +5 -5
- package/src/modules/checkout/pages/frontStore/checkoutSuccess/CheckoutSuccess.jsx +17 -17
- package/src/modules/checkout/pages/frontStore/checkoutSuccess/CheckoutSuccess.scss +48 -48
- package/src/modules/checkout/pages/frontStore/checkoutSuccess/CustomerInfo.jsx +178 -178
- package/src/modules/checkout/pages/frontStore/checkoutSuccess/ShippingNote.jsx +47 -47
- package/src/modules/checkout/pages/frontStore/checkoutSuccess/Summary.jsx +128 -132
- package/src/modules/checkout/pages/frontStore/checkoutSuccess/Summary.scss +51 -51
- package/src/modules/checkout/pages/frontStore/checkoutSuccess/index.js +23 -23
- package/src/modules/checkout/pages/frontStore/checkoutSuccess/route.json +5 -5
- package/src/modules/checkout/services/addCartItem.js +44 -0
- package/src/modules/checkout/services/cart/Cart.js +227 -232
- package/src/modules/checkout/services/cart/DataObject.js +130 -130
- package/src/modules/checkout/services/cart/registerCartBaseFields.js +675 -675
- package/src/modules/checkout/services/cart/registerCartItemBaseFields.js +324 -324
- package/src/modules/checkout/services/cart/sortFields.js +53 -53
- package/src/modules/checkout/services/createNewCart.js +28 -28
- package/src/modules/checkout/services/getCartById.js +23 -23
- package/src/modules/checkout/services/getCartByUUID.js +13 -13
- package/src/modules/checkout/services/getCurrentCart.js +27 -27
- package/src/modules/checkout/services/orderCreator.js +237 -219
- package/src/modules/checkout/services/removeCartItem.js +18 -0
- package/src/modules/checkout/services/saveCart.js +93 -93
- package/src/modules/checkout/services/toPrice.js +38 -38
- package/src/modules/checkout/services/updateCartItemQty.js +41 -0
- package/src/modules/checkout/tests/basicSetup.js +85 -85
- package/src/modules/checkout/tests/coupons.js +82 -82
- package/src/modules/checkout/tests/products.js +67 -67
- package/src/modules/checkout/tests/taxRates.js +3 -3
- package/src/modules/checkout/tests/unit/addItemSideEffect.test.js +86 -0
- package/src/modules/checkout/tests/unit/discountAmount.test.js +60 -60
- package/src/modules/checkout/tests/unit/grandTotal.test.js +83 -83
- package/src/modules/checkout/tests/unit/lineTotal.test.js +92 -90
- package/src/modules/checkout/tests/unit/lineTotalWithDiscount.test.js +103 -103
- package/src/modules/checkout/tests/unit/productPrice.test.js +69 -67
- package/src/modules/checkout/tests/unit/removeItemSideEffect.test.js +83 -0
- package/src/modules/checkout/tests/unit/subTotal.test.js +85 -85
- package/src/modules/checkout/tests/unit/subTotalWithDiscount.test.js +117 -117
- package/src/modules/checkout/tests/unit/taxAmount.test.js +68 -67
- package/src/modules/checkout/tests/unit/taxAmountRounding.test.js +277 -277
- package/src/modules/checkout/tests/unit/updateCartItemQtySideEffect.test.js +86 -0
- package/src/modules/cms/api/createCmsPage/[context]bodyParser[auth].js +5 -5
- package/src/modules/cms/api/createCmsPage/createPage[finish].js +11 -11
- package/src/modules/cms/api/createCmsPage/finish[apiResponse].js +33 -33
- package/src/modules/cms/api/createCmsPage/payloadSchema.json +10 -10
- package/src/modules/cms/api/createCmsPage/route.json +5 -5
- package/src/modules/cms/api/createWidget/[context]bodyParser[auth].js +5 -5
- package/src/modules/cms/api/createWidget/createWidget[finish].js +17 -17
- package/src/modules/cms/api/createWidget/finish[apiResponse].js +27 -27
- package/src/modules/cms/api/createWidget/payloadSchema.json +18 -18
- package/src/modules/cms/api/createWidget/route.json +5 -5
- package/src/modules/cms/api/deleteCmsPage/deleteCmsPage.js +27 -27
- package/src/modules/cms/api/deleteCmsPage/route.json +5 -5
- package/src/modules/cms/api/deleteWidget/deleteWidget.js +27 -27
- package/src/modules/cms/api/deleteWidget/route.json +5 -5
- package/src/modules/cms/api/fileBrowser/[context]validatePath[auth].js +20 -20
- package/src/modules/cms/api/fileBrowser/browFiles.js +12 -12
- package/src/modules/cms/api/fileBrowser/route.json +5 -5
- package/src/modules/cms/api/fileDelete/[context]validatePath[auth].js +20 -20
- package/src/modules/cms/api/fileDelete/deleteFile.js +13 -13
- package/src/modules/cms/api/fileDelete/route.json +5 -5
- package/src/modules/cms/api/fileUpload/[context]multerFile[auth].js +21 -21
- package/src/modules/cms/api/fileUpload/[context]validatePath[multerFile].js +20 -20
- package/src/modules/cms/api/fileUpload/[multerFile]upload.js +24 -24
- package/src/modules/cms/api/fileUpload/route.json +5 -5
- package/src/modules/cms/api/folderCreate/[context]bodyParser[auth].js +5 -5
- package/src/modules/cms/api/folderCreate/[context]validatePath[auth].js +20 -20
- package/src/modules/cms/api/folderCreate/createFolder.js +14 -14
- package/src/modules/cms/api/folderCreate/payloadSchema.json +10 -10
- package/src/modules/cms/api/folderCreate/route.json +5 -5
- package/src/modules/cms/api/imageUpload/[context]multerFile[auth].js +3 -3
- package/src/modules/cms/api/imageUpload/[context]validatePath[multerFile].js +3 -3
- package/src/modules/cms/api/imageUpload/[multerFile]upload.js +3 -3
- package/src/modules/cms/api/imageUpload/[multerFile]verifyImages[upload].js +25 -25
- package/src/modules/cms/api/imageUpload/route.json +5 -5
- package/src/modules/cms/api/updateCmsPage/[context]bodyParser[auth].js +5 -5
- package/src/modules/cms/api/updateCmsPage/finish[apiResponse].js +33 -33
- package/src/modules/cms/api/updateCmsPage/payloadSchema.json +10 -10
- package/src/modules/cms/api/updateCmsPage/route.json +5 -5
- package/src/modules/cms/api/updateCmsPage/updatePage[finish].js +11 -11
- package/src/modules/cms/api/updateWidget/[context]bodyParser[auth].js +5 -5
- package/src/modules/cms/api/updateWidget/finish[apiResponse].js +27 -27
- package/src/modules/cms/api/updateWidget/payloadSchema.json +18 -18
- package/src/modules/cms/api/updateWidget/route.json +5 -5
- package/src/modules/cms/api/updateWidget/updateWidget[finish].js +17 -17
- package/src/modules/cms/bootstrap.js +260 -260
- package/src/modules/cms/graphql/types/CmsPage/CmsPage.graphql +33 -33
- package/src/modules/cms/graphql/types/CmsPage/CmsPage.resolvers.js +63 -63
- package/src/modules/cms/graphql/types/Menu/Menu.graphql +19 -19
- package/src/modules/cms/graphql/types/Menu/Menu.resolvers.js +33 -33
- package/src/modules/cms/graphql/types/PageInfo/PageInfo.graphql +21 -21
- package/src/modules/cms/graphql/types/PageInfo/PageInfo.resolvers.js +90 -90
- package/src/modules/cms/graphql/types/ThemeConfig/ThemeConfig.graphql +88 -88
- package/src/modules/cms/graphql/types/ThemeConfig/ThemeConfig.resolvers.js +7 -7
- package/src/modules/cms/graphql/types/Widget/Widget.graphql +91 -91
- package/src/modules/cms/graphql/types/Widget/Widget.resolvers.js +142 -142
- package/src/modules/cms/migration/Version-1.0.0.js +38 -38
- package/src/modules/cms/migration/Version-1.1.0.js +22 -22
- package/src/modules/cms/migration/Version-1.1.1.js +103 -103
- package/src/modules/cms/pages/admin/adminNotFound/Meta.jsx +17 -17
- package/src/modules/cms/pages/admin/adminNotFound/NotFound.jsx +66 -66
- package/src/modules/cms/pages/admin/adminNotFound/route.json +4 -4
- package/src/modules/cms/pages/admin/adminStaticAsset/route.json +4 -4
- package/src/modules/cms/pages/admin/adminStaticAsset/staticAssets.js +5 -5
- package/src/modules/cms/pages/admin/all/CmsMenuGroup.jsx +43 -43
- package/src/modules/cms/pages/admin/all/CopyRight.jsx +35 -0
- package/src/modules/cms/pages/admin/all/Layout.jsx +31 -35
- package/src/modules/cms/pages/admin/all/Layout.scss +91 -91
- package/src/modules/cms/pages/admin/all/Logo.jsx +120 -83
- package/src/modules/cms/pages/admin/all/Logo.scss +12 -12
- package/src/modules/cms/pages/admin/all/Meta.jsx +34 -34
- package/src/modules/cms/pages/admin/all/Navigation.jsx +20 -20
- package/src/modules/cms/pages/admin/all/Navigation.scss +84 -84
- package/src/modules/cms/pages/admin/all/Notification.jsx +42 -42
- package/src/modules/cms/pages/admin/all/Notification.scss +531 -531
- package/src/modules/cms/pages/admin/all/QuickLinks.jsx +35 -35
- package/src/modules/cms/pages/admin/all/SearchBox.jsx +169 -169
- package/src/modules/cms/pages/admin/all/SearchBox.scss +65 -65
- package/src/modules/cms/pages/admin/all/Version.jsx +25 -0
- package/src/modules/cms/pages/admin/all/search/NoResult.jsx +45 -45
- package/src/modules/cms/pages/admin/all/search/Results.jsx +74 -74
- package/src/modules/cms/pages/admin/all/tailwind.scss +3 -3
- package/src/modules/cms/pages/admin/cmsPageEdit/PageEditForm.jsx +52 -52
- package/src/modules/cms/pages/admin/cmsPageEdit/index.js +37 -37
- package/src/modules/cms/pages/admin/cmsPageEdit/route.json +4 -4
- package/src/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/FormContent.jsx +56 -56
- package/src/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/FormContent.scss +7 -7
- package/src/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/General.jsx +118 -105
- package/src/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/PageHeading.jsx +37 -37
- package/src/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/Seo.jsx +97 -97
- package/src/modules/cms/pages/admin/cmsPageEdit+cmsPageNew/Status.jsx +40 -40
- package/src/modules/cms/pages/admin/cmsPageGrid/Grid.jsx +384 -379
- package/src/modules/cms/pages/admin/cmsPageGrid/Heading.jsx +11 -11
- package/src/modules/cms/pages/admin/cmsPageGrid/NewPageButton.jsx +22 -22
- package/src/modules/cms/pages/admin/cmsPageGrid/index.js +15 -15
- package/src/modules/cms/pages/admin/cmsPageGrid/route.json +4 -4
- package/src/modules/cms/pages/admin/cmsPageNew/PageNewForm.jsx +60 -60
- package/src/modules/cms/pages/admin/cmsPageNew/index.js +11 -11
- package/src/modules/cms/pages/admin/cmsPageNew/route.json +4 -4
- package/src/modules/cms/pages/admin/dashboard/Layout.jsx +21 -21
- package/src/modules/cms/pages/admin/dashboard/Layout.scss +7 -7
- package/src/modules/cms/pages/admin/dashboard/PageHeading.jsx +11 -11
- package/src/modules/cms/pages/admin/dashboard/index.js +11 -11
- package/src/modules/cms/pages/admin/dashboard/route.json +4 -4
- package/src/modules/cms/pages/admin/widgetEdit/WidgetForm.jsx +52 -52
- package/src/modules/cms/pages/admin/widgetEdit/index.js +36 -36
- package/src/modules/cms/pages/admin/widgetEdit/route.json +4 -4
- package/src/modules/cms/pages/admin/widgetEdit+widgetNew/FormContent.jsx +69 -69
- package/src/modules/cms/pages/admin/widgetEdit+widgetNew/FormContent.scss +7 -7
- package/src/modules/cms/pages/admin/widgetEdit+widgetNew/General.jsx +185 -185
- package/src/modules/cms/pages/admin/widgetEdit+widgetNew/PageHeading.jsx +37 -37
- package/src/modules/cms/pages/admin/widgetEdit+widgetNew/Setting.jsx +55 -55
- package/src/modules/cms/pages/admin/widgetGrid/Grid.jsx +420 -415
- package/src/modules/cms/pages/admin/widgetGrid/Heading.jsx +11 -11
- package/src/modules/cms/pages/admin/widgetGrid/NewWidgetButton.jsx +52 -52
- package/src/modules/cms/pages/admin/widgetGrid/index.js +15 -15
- package/src/modules/cms/pages/admin/widgetGrid/route.json +4 -4
- package/src/modules/cms/pages/admin/widgetNew/WidgetNewForm.jsx +60 -60
- package/src/modules/cms/pages/admin/widgetNew/index.js +11 -11
- package/src/modules/cms/pages/admin/widgetNew/route.json +4 -4
- package/src/modules/cms/pages/admin/widgetNew/typeValidate.js +21 -21
- package/src/modules/cms/pages/frontStore/all/Breadcrumb.jsx +50 -50
- package/src/modules/cms/pages/frontStore/all/Footer.jsx +125 -125
- package/src/modules/cms/pages/frontStore/all/HeadTags.jsx +163 -163
- package/src/modules/cms/pages/frontStore/all/Layout.jsx +40 -40
- package/src/modules/cms/pages/frontStore/all/Layout.scss +260 -260
- package/src/modules/cms/pages/frontStore/all/Logo.jsx +83 -83
- package/src/modules/cms/pages/frontStore/all/Logo.scss +8 -8
- package/src/modules/cms/pages/frontStore/all/Notification.jsx +42 -42
- package/src/modules/cms/pages/frontStore/all/Notification.scss +532 -532
- package/src/modules/cms/pages/frontStore/all/tailwind.scss +3 -3
- package/src/modules/cms/pages/frontStore/cmsPageView/Layout.jsx +113 -113
- package/src/modules/cms/pages/frontStore/cmsPageView/Layout.scss +248 -248
- package/src/modules/cms/pages/frontStore/cmsPageView/View.jsx +36 -36
- package/src/modules/cms/pages/frontStore/cmsPageView/index.js +31 -31
- package/src/modules/cms/pages/frontStore/cmsPageView/route.json +5 -5
- package/src/modules/cms/pages/frontStore/homepage/meta.js +18 -18
- package/src/modules/cms/pages/frontStore/homepage/route.json +5 -5
- package/src/modules/cms/pages/frontStore/notFound/Meta.jsx +17 -17
- package/src/modules/cms/pages/frontStore/notFound/NotFound.jsx +75 -75
- package/src/modules/cms/pages/frontStore/notFound/route.json +5 -5
- package/src/modules/cms/pages/frontStore/staticAsset/[context]staticAssets[auth].js +5 -5
- package/src/modules/cms/pages/frontStore/staticAsset/route.json +4 -4
- package/src/modules/cms/services/CMSPageCollection.js +62 -62
- package/src/modules/cms/services/CustomMemoryStorage.js +37 -37
- package/src/modules/cms/services/WidgetCollection.js +62 -62
- package/src/modules/cms/services/browFiles.js +54 -54
- package/src/modules/cms/services/createFolder.js +42 -42
- package/src/modules/cms/services/deleteFile.js +42 -42
- package/src/modules/cms/services/generateFileName.js +9 -9
- package/src/modules/cms/services/getCmsPagesBaseQuery.js +14 -14
- package/src/modules/cms/services/getMulter.js +26 -26
- package/src/modules/cms/services/getWidgetsBaseQuery.js +7 -7
- package/src/modules/cms/services/page/createPage.js +84 -84
- package/src/modules/cms/services/page/deletePage.js +57 -57
- package/src/modules/cms/services/page/pageDataSchema.json +33 -33
- package/src/modules/cms/services/page/updatePage.js +106 -106
- package/src/modules/cms/services/registerDefaultPageCollectionFilters.js +62 -62
- package/src/modules/cms/services/registerDefaultWidgetCollectionFilters.js +62 -62
- package/src/modules/cms/services/tailwind.admin.config.js +34 -34
- package/src/modules/cms/services/tailwind.frontStore.config.js +35 -35
- package/src/modules/cms/services/tests/unit/validatePath.test.js +31 -31
- package/src/modules/cms/services/uploadFile.js +61 -61
- package/src/modules/cms/services/validatePath.js +16 -16
- package/src/modules/cms/services/widget/createWidget.js +73 -73
- package/src/modules/cms/services/widget/deleteWidget.js +49 -49
- package/src/modules/cms/services/widget/loadWidgetInstances.js +54 -54
- package/src/modules/cms/services/widget/updateWidget.js +86 -86
- package/src/modules/cms/services/widget/widgetDataSchema.json +29 -29
- package/src/modules/cod/api/codCapturePayment/[bodyParser]capture.js +62 -62
- package/src/modules/cod/api/codCapturePayment/[context]bodyParser[auth].js +5 -5
- package/src/modules/cod/api/codCapturePayment/payloadSchema.json +10 -10
- package/src/modules/cod/api/codCapturePayment/route.json +5 -5
- package/src/modules/cod/api/createOrder/[placeOrder]addOrderPlacedEvent.js +19 -19
- package/src/modules/cod/api/getPaymentMethods/registerCod[sendMethods].js +15 -15
- package/src/modules/cod/bootstrap.js +27 -27
- package/src/modules/cod/graphql/types/CODSetting/CODSetting.graphql +4 -4
- package/src/modules/cod/graphql/types/CODSetting/CODSetting.resolvers.js +22 -22
- package/src/modules/cod/pages/admin/orderEdit/CaptureButton.jsx +72 -71
- package/src/modules/cod/pages/admin/paymentSetting/CODSetting.jsx +60 -60
- package/src/modules/cod/pages/frontStore/checkout/CashOnDelivery.jsx +137 -120
- package/src/modules/customer/api/createCustomer/[bodyParser]createCustomer.js +48 -48
- package/src/modules/customer/api/createCustomer/[context]bodyParser[auth].js +5 -5
- package/src/modules/customer/api/createCustomer/route.json +5 -5
- package/src/modules/customer/api/createCustomerAddress/[bodyParser]createCustomerAddress.js +55 -0
- package/src/modules/{paypal/api/paypalGetAccessToken → customer/api/createCustomerAddress}/[context]bodyParser[auth].js +5 -5
- package/src/modules/customer/api/createCustomerAddress/route.json +5 -0
- package/src/modules/customer/api/deleteCustomer/deleteCustomer.js +26 -26
- package/src/modules/customer/api/deleteCustomer/route.json +5 -5
- package/src/modules/customer/api/deleteCustomerAddress/deleteCustomerAddress.js +59 -0
- package/src/modules/customer/api/deleteCustomerAddress/route.json +5 -0
- package/src/modules/customer/api/global/[context]getCurrentCustomer[auth].js +61 -61
- package/src/modules/customer/api/resetPassword/[bodyParser]resetPassword.js +57 -57
- package/src/modules/customer/api/resetPassword/[context]bodyParser[auth].js +5 -5
- package/src/modules/customer/api/resetPassword/payloadSchema.json +11 -11
- package/src/modules/customer/api/resetPassword/route.json +5 -5
- package/src/modules/customer/api/updateCustomer/[context]bodyParser[auth].js +5 -5
- package/src/modules/customer/api/updateCustomer/payloadSchema.json +16 -16
- package/src/modules/customer/api/updateCustomer/route.json +5 -5
- package/src/modules/customer/api/updateCustomer/updateCustomer.js +85 -85
- package/src/modules/customer/api/updateCustomerAddress/[context]bodyParser[auth].js +5 -0
- package/src/modules/customer/api/updateCustomerAddress/payloadSchema.json +16 -0
- package/src/modules/customer/api/updateCustomerAddress/route.json +5 -0
- package/src/modules/customer/api/updateCustomerAddress/updateCustomerAddress.js +81 -0
- package/src/modules/customer/api/updatePassword/[bodyParser]updatePassword.js +84 -84
- package/src/modules/customer/api/updatePassword/[context]bodyParser[auth].js +5 -5
- package/src/modules/customer/api/updatePassword/payloadSchema.json +13 -13
- package/src/modules/customer/api/updatePassword/route.json +5 -5
- package/src/modules/customer/bootstrap.js +191 -204
- package/src/modules/customer/graphql/types/Customer/Customer.admin.graphql +20 -20
- package/src/modules/customer/graphql/types/Customer/Customer.admin.resolvers.js +28 -28
- package/src/modules/customer/graphql/types/Customer/Customer.graphql +36 -15
- package/src/modules/customer/graphql/types/Customer/Customer.resolvers.js +33 -8
- package/src/modules/customer/graphql/types/Customer/CustomerSetting.graphql +3 -3
- package/src/modules/customer/graphql/types/Customer/CustomerSetting.resolvers.js +7 -7
- package/src/modules/customer/graphql/types/CustomerGroup/CustomerGroup.admin.graphql +20 -20
- package/src/modules/customer/graphql/types/CustomerGroup/CustomerGroup.admin.resolvers.js +39 -39
- package/src/modules/customer/graphql/types/CustomerGroup/CustomerGroup.graphql +10 -10
- package/src/modules/customer/graphql/types/CustomerGroup/CustomerGroup.resolvers.js +14 -14
- package/src/modules/customer/migration/Version-1.0.0.js +117 -117
- package/src/modules/customer/migration/Version-1.0.1.js +67 -67
- package/src/modules/customer/migration/Version-1.0.2.js +16 -16
- package/src/modules/customer/migration/Version-1.0.3.js +15 -0
- package/src/modules/customer/pages/admin/all/CustomerMenuGroup.jsx +35 -35
- package/src/modules/customer/pages/admin/customerEdit/CustomerEditForm.jsx +26 -26
- package/src/modules/customer/pages/admin/customerEdit/CustomerEditForm.scss +7 -7
- package/src/modules/customer/pages/admin/customerEdit/index.js +29 -29
- package/src/modules/customer/pages/admin/customerEdit/route.json +4 -4
- package/src/modules/customer/pages/admin/customerEdit+customerNew/General.jsx +126 -126
- package/src/modules/customer/pages/admin/customerEdit+customerNew/OrderHistory.jsx +84 -83
- package/src/modules/customer/pages/admin/customerEdit+customerNew/PageHeading.jsx +39 -39
- package/src/modules/customer/pages/admin/customerGrid/Grid.jsx +450 -445
- package/src/modules/customer/pages/admin/customerGrid/Heading.jsx +11 -11
- package/src/modules/customer/pages/admin/customerGrid/index.js +15 -15
- package/src/modules/customer/pages/admin/customerGrid/route.json +4 -4
- package/src/modules/customer/pages/frontStore/account/AccountDetails.jsx +69 -49
- package/src/modules/customer/pages/frontStore/account/Addresses.jsx +257 -0
- package/src/modules/customer/pages/frontStore/account/Layout.jsx +63 -57
- package/src/modules/customer/pages/frontStore/account/OrderHistory.jsx +104 -104
- package/src/modules/customer/pages/frontStore/account/index.js +21 -21
- package/src/modules/customer/pages/frontStore/account/route.json +5 -5
- package/src/modules/customer/pages/frontStore/accountEdit/EditForm.jsx +73 -0
- package/src/modules/customer/pages/frontStore/accountEdit/Layout.jsx +57 -0
- package/src/modules/customer/pages/frontStore/accountEdit/index.js +21 -0
- package/src/modules/customer/pages/frontStore/accountEdit/route.json +5 -0
- package/src/modules/customer/pages/frontStore/all/UserIcon.jsx +45 -45
- package/src/modules/customer/pages/frontStore/all/[context]auth.js +35 -35
- package/src/modules/customer/pages/frontStore/checkout/CustomerInfoStep.jsx +89 -89
- package/src/modules/customer/pages/frontStore/customerLoginJson/[bodyParser]login.js +44 -44
- package/src/modules/customer/pages/frontStore/customerLoginJson/payloadSchema.json +13 -13
- package/src/modules/customer/pages/frontStore/customerLoginJson/route.json +4 -4
- package/src/modules/customer/pages/frontStore/customerLogoutJson/logout.js +35 -35
- package/src/modules/customer/pages/frontStore/customerLogoutJson/route.json +4 -4
- package/src/modules/customer/pages/frontStore/login/LoginForm.jsx +94 -94
- package/src/modules/customer/pages/frontStore/login/LoginForm.scss +37 -37
- package/src/modules/customer/pages/frontStore/login/index.js +21 -21
- package/src/modules/customer/pages/frontStore/login/route.json +5 -5
- package/src/modules/customer/pages/frontStore/register/RegisterForm.jsx +136 -136
- package/src/modules/customer/pages/frontStore/register/RegisterForm.scss +37 -37
- package/src/modules/customer/pages/frontStore/register/index.js +23 -23
- package/src/modules/customer/pages/frontStore/register/route.json +5 -5
- package/src/modules/customer/pages/frontStore/resetPasswordPage/ResetPasswordForm.jsx +115 -115
- package/src/modules/customer/pages/frontStore/resetPasswordPage/ResetPasswordForm.scss +37 -37
- package/src/modules/customer/pages/frontStore/resetPasswordPage/index.js +21 -21
- package/src/modules/customer/pages/frontStore/resetPasswordPage/route.json +5 -5
- package/src/modules/customer/pages/frontStore/updatePasswordPage/UpdatePasswordForm.jsx +123 -123
- package/src/modules/customer/pages/frontStore/updatePasswordPage/UpdatePasswordForm.scss +37 -37
- package/src/modules/customer/pages/frontStore/updatePasswordPage/index.js +21 -21
- package/src/modules/customer/pages/frontStore/updatePasswordPage/route.json +5 -5
- package/src/modules/customer/services/CustomerCollection.js +60 -60
- package/src/modules/customer/services/CustomerGroupCollection.js +59 -59
- package/src/modules/customer/services/customer/address/addressValidator.js +21 -0
- package/src/modules/customer/services/customer/address/createCustomerAddress.js +83 -0
- package/src/modules/customer/services/customer/address/deleteCustomerAddress.js +55 -0
- package/src/modules/customer/services/customer/address/updateCustomerAddress.js +95 -0
- package/src/modules/customer/services/customer/createCustomer.js +112 -112
- package/src/modules/customer/services/customer/customerDataSchema.json +20 -20
- package/src/modules/customer/services/customer/deleteCustomer.js +53 -53
- package/src/modules/customer/services/customer/loginCustomerWithEmail.js +33 -0
- package/src/modules/customer/services/customer/logoutCustomer.js +9 -0
- package/src/modules/customer/services/customer/updateCustomer.js +96 -96
- package/src/modules/customer/services/customer/updatePassword.js +68 -68
- package/src/modules/customer/services/getCustomerGroupsBaseQuery.js +7 -7
- package/src/modules/customer/services/getCustomersBaseQuery.js +7 -7
- package/src/modules/customer/services/registerDefaultCustomerCollectionFilters.js +90 -90
- package/src/modules/customer/services/registerDefaultCustomerGroupCollectionFilters.js +50 -50
- package/src/modules/graphql/api/adminGraphql/[bodyParser]graphql.js +5 -5
- package/src/modules/graphql/api/adminGraphql/[context]bodyParser[auth].js +5 -5
- package/src/modules/graphql/api/adminGraphql/route.json +5 -5
- package/src/modules/graphql/api/graphql/[auth]removeUser[graphql].js +9 -9
- package/src/modules/graphql/api/graphql/[bodyParser]graphql.js +5 -5
- package/src/modules/graphql/api/graphql/[context]bodyParser[auth].js +5 -5
- package/src/modules/graphql/api/graphql/route.json +5 -5
- package/src/modules/graphql/bootstrap.js +5 -5
- package/src/modules/graphql/graphql/types/Query/Query.graphql +6 -6
- package/src/modules/graphql/graphql/types/Query/Query.resolvers.js +5 -5
- package/src/modules/graphql/pages/global/[bodyParser]buildQuery[graphql].js +352 -349
- package/src/modules/graphql/pages/global/{[buildQuery]graphql[notification].js → [buildQuery]graphql[notFound].js} +77 -77
- package/src/modules/graphql/pages/global/bodyParser[buildQuery].js +7 -7
- package/src/modules/graphql/services/buildResolvers.js +27 -27
- package/src/modules/graphql/services/buildSchema.js +10 -10
- package/src/modules/graphql/services/buildStoreFrontSchema.js +10 -10
- package/src/modules/graphql/services/buildTypes.js +25 -25
- package/src/modules/graphql/services/contextHelper.js +48 -48
- package/src/modules/graphql/services/graphqlErrorMessageFormat.js +38 -38
- package/src/modules/graphql/services/graphqlMiddleware.js +51 -51
- package/src/modules/oms/api/cancelOrder/[context]borderParser[auth].js +5 -0
- package/src/modules/oms/api/cancelOrder/cancelOrder.js +25 -0
- package/src/modules/oms/api/cancelOrder/payloadSchema.json +15 -0
- package/src/modules/oms/api/cancelOrder/route.json +5 -0
- package/src/modules/oms/api/createShipment/[context]borderParser[auth].js +5 -5
- package/src/modules/oms/api/createShipment/createShipment.js +100 -102
- package/src/modules/oms/api/createShipment/payloadSchema.json +12 -12
- package/src/modules/oms/api/createShipment/route.json +5 -5
- package/src/modules/oms/api/lifetimesales/loadData.js +53 -53
- package/src/modules/oms/api/lifetimesales/route.json +5 -5
- package/src/modules/oms/api/markDelivered/[context]bodyParser[auth].js +5 -5
- package/src/modules/oms/api/markDelivered/markDelivered.js +85 -90
- package/src/modules/oms/api/markDelivered/payloadSchema.json +9 -9
- package/src/modules/oms/api/markDelivered/route.json +5 -5
- package/src/modules/oms/api/salestatistic/loadData.js +70 -70
- package/src/modules/oms/api/salestatistic/route.json +5 -5
- package/src/modules/oms/api/updateShipment/[context]bodyParser[auth].js +5 -5
- package/src/modules/oms/api/updateShipment/payloadSchema.json +12 -12
- package/src/modules/oms/api/updateShipment/route.json +5 -5
- package/src/modules/oms/api/updateShipment/updateShipment.js +97 -97
- package/src/modules/oms/bootstrap.js +389 -161
- package/src/modules/oms/graphql/types/BestSeller/BestSeller.admin.graphql +7 -7
- package/src/modules/oms/graphql/types/BestSeller/BestSeller.admin.resolvers.js +38 -38
- package/src/modules/oms/graphql/types/Carrier/Carrier.admin.graphql +12 -12
- package/src/modules/oms/graphql/types/Carrier/Carrier.admin.resolvers.js +13 -13
- package/src/modules/oms/graphql/types/Order/Order.admin.graphql +15 -14
- package/src/modules/oms/graphql/types/Order/Order.admin.resolvers.js +31 -30
- package/src/modules/oms/graphql/types/Order/Order.graphql +134 -134
- package/src/modules/oms/graphql/types/Order/Order.resolvers.js +127 -113
- package/src/modules/oms/graphql/types/PaymentTransaction/PaymentTransaction.admin.graphql +18 -18
- package/src/modules/oms/graphql/types/PaymentTransaction/PaymentTransaction.admin.resolvers.js +14 -14
- package/src/modules/oms/graphql/types/Status/Status.graphql +39 -24
- package/src/modules/oms/graphql/types/Status/Status.resolvers.js +27 -20
- package/src/modules/oms/migration/Version-1.0.0.js +48 -48
- package/src/modules/oms/migration/Version-1.0.1.js +32 -0
- package/src/modules/oms/pages/admin/all/OmsMenuGroup.jsx +35 -35
- package/src/modules/oms/pages/admin/dashboard/Bestcustomers.jsx +68 -68
- package/src/modules/oms/pages/admin/dashboard/Bestsellers.jsx +131 -131
- package/src/modules/oms/pages/admin/dashboard/Bestsellers.scss +48 -48
- package/src/modules/oms/pages/admin/dashboard/Lifetimesales.jsx +133 -133
- package/src/modules/oms/pages/admin/dashboard/Lifetimesales.scss +31 -31
- package/src/modules/oms/pages/admin/dashboard/Statistic.jsx +110 -110
- package/src/modules/oms/pages/admin/dashboard/Statistic.scss +21 -21
- package/src/modules/oms/pages/admin/orderEdit/Activities.jsx +113 -113
- package/src/modules/oms/pages/admin/orderEdit/Activities.scss +59 -59
- package/src/modules/oms/pages/admin/orderEdit/AddTrackingButton.jsx +133 -133
- package/src/modules/oms/pages/admin/orderEdit/CancelButton.jsx +131 -0
- package/src/modules/oms/pages/admin/orderEdit/Customer.jsx +131 -131
- package/src/modules/oms/pages/admin/orderEdit/CustomerNotes.jsx +55 -55
- package/src/modules/oms/pages/admin/orderEdit/Items.jsx +182 -182
- package/src/modules/oms/pages/admin/orderEdit/Items.scss +53 -53
- package/src/modules/oms/pages/admin/orderEdit/Layout.jsx +21 -21
- package/src/modules/oms/pages/admin/orderEdit/Layout.scss +7 -7
- package/src/modules/oms/pages/admin/orderEdit/MarkDeliveredButton.jsx +78 -78
- package/src/modules/oms/pages/admin/orderEdit/PageHeading.jsx +30 -30
- package/src/modules/oms/pages/admin/orderEdit/Payment.jsx +161 -184
- package/src/modules/oms/pages/admin/orderEdit/Payment.scss +14 -14
- package/src/modules/oms/pages/admin/orderEdit/ShipButton.jsx +152 -139
- package/src/modules/oms/pages/admin/orderEdit/{ShipmentStatus.jsx → Status.jsx} +45 -45
- package/src/modules/oms/pages/admin/orderEdit/TrackingButton.jsx +73 -73
- package/src/modules/oms/pages/admin/orderEdit/index.js +29 -29
- package/src/modules/oms/pages/admin/orderEdit/route.json +4 -4
- package/src/modules/oms/pages/admin/orderGrid/Grid.jsx +545 -539
- package/src/modules/oms/pages/admin/orderGrid/Heading.jsx +11 -11
- package/src/modules/oms/pages/admin/orderGrid/index.js +15 -15
- package/src/modules/oms/pages/admin/orderGrid/route.json +4 -4
- package/src/modules/oms/services/OrderCollection.js +56 -56
- package/src/modules/oms/services/cancelOrder.js +112 -0
- package/src/modules/oms/services/getOrdersBaseQuery.js +7 -7
- package/src/modules/oms/services/registerDefaultOrderCollectionFilters.js +121 -121
- package/src/modules/oms/services/updateOrderStatus.js +126 -0
- package/src/modules/oms/services/updatePaymentStatus.js +53 -0
- package/src/modules/oms/services/updateShipmentStatus.js +54 -0
- package/src/modules/paypal/api/getPaymentMethods/registerPaypal[sendMethods].js +22 -22
- package/src/modules/paypal/api/paypalAuthorizePayment/[bodyParser]authorize.js +99 -102
- package/src/modules/paypal/api/paypalAuthorizePayment/[context]bodyParser[auth].js +5 -5
- package/src/modules/paypal/api/paypalAuthorizePayment/payloadSchema.json +10 -10
- package/src/modules/paypal/api/paypalAuthorizePayment/route.json +5 -5
- package/src/modules/paypal/api/paypalCaptureAuthorizedPayment/[bodyParser]capture.js +125 -0
- package/src/modules/paypal/api/paypalCaptureAuthorizedPayment/[context]bodyParser[auth].js +5 -0
- package/src/modules/paypal/api/{paypalGetAccessToken → paypalCaptureAuthorizedPayment}/payloadSchema.json +10 -10
- package/src/modules/paypal/api/{paypalGetAccessToken → paypalCaptureAuthorizedPayment}/route.json +5 -5
- package/src/modules/paypal/api/paypalCapturePayment/[bodyParser]capture.js +96 -99
- package/src/modules/paypal/api/paypalCapturePayment/[context]bodyParser[auth].js +5 -5
- package/src/modules/paypal/api/paypalCapturePayment/payloadSchema.json +10 -10
- package/src/modules/paypal/api/paypalCapturePayment/route.json +5 -5
- package/src/modules/paypal/api/paypalCreateOrder/[bodyParser]createOrder.js +216 -218
- package/src/modules/paypal/api/paypalCreateOrder/[context]bodyParser[auth].js +5 -5
- package/src/modules/paypal/api/paypalCreateOrder/payloadSchema.json +10 -10
- package/src/modules/paypal/api/paypalCreateOrder/route.json +5 -5
- package/src/modules/paypal/bootstrap.js +40 -28
- package/src/modules/paypal/graphql/types/PaypalSetting/PaypalSetting.admin.graphql +7 -7
- package/src/modules/paypal/graphql/types/PaypalSetting/PaypalSetting.admin.resolvers.js +78 -78
- package/src/modules/paypal/graphql/types/PaypalSetting/PaypalSetting.graphql +4 -4
- package/src/modules/paypal/graphql/types/PaypalSetting/PaypalSetting.resolvers.js +30 -30
- package/src/modules/paypal/pages/admin/orderEdit/PaypalCaptureButton.jsx +75 -0
- package/src/modules/paypal/pages/admin/orderEdit/StripeRefundButton.jsx +139 -0
- package/src/modules/paypal/pages/admin/paymentSetting/PaypalSetting.jsx +160 -137
- package/src/modules/paypal/pages/frontStore/checkout/Paypal.jsx +185 -187
- package/src/modules/paypal/pages/frontStore/paypalCancel/index.js +33 -33
- package/src/modules/paypal/pages/frontStore/paypalCancel/route.json +4 -4
- package/src/modules/paypal/pages/frontStore/paypalReturn/Error.jsx +18 -18
- package/src/modules/paypal/pages/frontStore/paypalReturn/index.js +68 -68
- package/src/modules/paypal/pages/frontStore/paypalReturn/route.json +4 -4
- package/src/modules/paypal/services/getApiBaseUrl.js +9 -9
- package/src/modules/paypal/services/requester.js +68 -0
- package/src/modules/paypal/services/voidPaymentTransaction.js +43 -0
- package/src/modules/promotion/api/couponApply/[context]bodyParser[auth].js +5 -5
- package/src/modules/promotion/api/couponApply/[validateCouponCode]applyCoupon.js +42 -42
- package/src/modules/promotion/api/couponApply/payloadSchema.json +15 -15
- package/src/modules/promotion/api/couponApply/route.json +5 -5
- package/src/modules/promotion/api/couponApply/validateCouponCode.js +16 -16
- package/src/modules/promotion/api/createCoupon/[context]bodyParser[auth].js +5 -5
- package/src/modules/promotion/api/createCoupon/createCoupon[finish].js +10 -10
- package/src/modules/promotion/api/createCoupon/finish[apiResponse].js +27 -27
- package/src/modules/promotion/api/createCoupon/route.json +5 -5
- package/src/modules/promotion/api/deleteCoupon/deleteCoupon.js +27 -27
- package/src/modules/promotion/api/deleteCoupon/route.json +5 -5
- package/src/modules/promotion/api/updateCoupon/[context]bodyParser[auth].js +5 -5
- package/src/modules/promotion/api/updateCoupon/finish[apiResponse].js +27 -27
- package/src/modules/promotion/api/updateCoupon/route.json +5 -5
- package/src/modules/promotion/api/updateCoupon/updateCoupon[finish].js +10 -10
- package/src/modules/promotion/bootstrap.js +49 -49
- package/src/modules/promotion/graphql/types/Coupon/Coupon.admin.graphql +87 -87
- package/src/modules/promotion/graphql/types/Coupon/Coupon.admin.resolvers.js +62 -62
- package/src/modules/promotion/graphql/types/Coupon/Coupon.graphql +5 -5
- package/src/modules/promotion/graphql/types/Coupon/Coupon.resolvers.js +7 -7
- package/src/modules/promotion/migration/Version-1.0.0.js +54 -54
- package/src/modules/promotion/migration/Version-1.0.1.js +24 -24
- package/src/modules/promotion/pages/admin/all/CouponMenuGroup.jsx +35 -35
- package/src/modules/promotion/pages/admin/all/NewCouponQuickLink.jsx +23 -23
- package/src/modules/promotion/pages/admin/couponEdit/CouponEditForm.jsx +52 -52
- package/src/modules/promotion/pages/admin/couponEdit/index.js +29 -29
- package/src/modules/promotion/pages/admin/couponEdit/route.json +4 -4
- package/src/modules/promotion/pages/admin/couponEdit+couponNew/CustomerCondition.jsx +154 -154
- package/src/modules/promotion/pages/admin/couponEdit+couponNew/DiscountType.jsx +131 -126
- package/src/modules/promotion/pages/admin/couponEdit+couponNew/FormContent.jsx +79 -79
- package/src/modules/promotion/pages/admin/couponEdit+couponNew/FormContent.scss +7 -7
- package/src/modules/promotion/pages/admin/couponEdit+couponNew/General.jsx +110 -110
- package/src/modules/promotion/pages/admin/couponEdit+couponNew/OrderCondition.jsx +76 -68
- package/src/modules/promotion/pages/admin/couponEdit+couponNew/PageHeading.jsx +37 -37
- package/src/modules/promotion/pages/admin/couponGrid/Grid.jsx +552 -547
- package/src/modules/promotion/pages/admin/couponGrid/Heading.jsx +11 -11
- package/src/modules/promotion/pages/admin/couponGrid/NewCouponButton.jsx +22 -22
- package/src/modules/promotion/pages/admin/couponGrid/index.js +14 -14
- package/src/modules/promotion/pages/admin/couponGrid/route.json +4 -4
- package/src/modules/promotion/pages/admin/couponNew/CouponNewForm.jsx +60 -60
- package/src/modules/promotion/pages/admin/couponNew/index.js +10 -10
- package/src/modules/promotion/pages/admin/couponNew/route.json +4 -4
- package/src/modules/promotion/pages/admin/navigation/CouponNewMenuItem.jsx +12 -12
- package/src/modules/promotion/pages/admin/navigation/CouponsMenuItem.jsx +12 -12
- package/src/modules/promotion/pages/frontStore/cart/Coupon.jsx +80 -80
- package/src/modules/promotion/services/CouponCollection.js +59 -59
- package/src/modules/promotion/services/coupon/couponDataSchema.json +206 -206
- package/src/modules/promotion/services/coupon/createCoupon.js +77 -77
- package/src/modules/promotion/services/coupon/deleteCoupon.js +51 -51
- package/src/modules/promotion/services/coupon/updateCoupon.js +96 -96
- package/src/modules/promotion/services/couponValidator.js +37 -37
- package/src/modules/promotion/services/discountCalculator.js +14 -14
- package/src/modules/promotion/services/getCartTotalBeforeDiscount.js +13 -13
- package/src/modules/promotion/services/getCouponsBaseQuery.js +7 -7
- package/src/modules/promotion/services/registerCartItemPromotionFields.js +80 -80
- package/src/modules/promotion/services/registerCartPromotionFields.js +128 -128
- package/src/modules/promotion/services/registerDefaultCalculators.js +371 -370
- package/src/modules/promotion/services/registerDefaultCouponCollectionFilters.js +72 -72
- package/src/modules/promotion/services/registerDefaultValidators.js +433 -433
- package/src/modules/setting/api/saveSetting/[context]bodyParser[auth].js +5 -5
- package/src/modules/setting/api/saveSetting/route.json +5 -5
- package/src/modules/setting/api/saveSetting/saveSetting.js +65 -65
- package/src/modules/setting/graphql/types/Setting/Setting.graphql +10 -10
- package/src/modules/setting/graphql/types/Setting/Setting.resolvers.js +20 -20
- package/src/modules/setting/graphql/types/ShippingSetting/ShippingSetting.graphql +4 -4
- package/src/modules/setting/graphql/types/ShippingSetting/ShippingSetting.resolvers.js +17 -17
- package/src/modules/setting/graphql/types/StoreSetting/StoreSetting.graphql +14 -14
- package/src/modules/setting/graphql/types/StoreSetting/StoreSetting.resolvers.js +92 -92
- package/src/modules/setting/migration/Version-1.0.0.js +17 -17
- package/src/modules/setting/pages/admin/all/PaymentSettingMenu.jsx +26 -26
- package/src/modules/setting/pages/admin/all/SettingMenuGroup.jsx +31 -31
- package/src/modules/setting/pages/admin/all/StoreSettingMenu.jsx +26 -26
- package/src/modules/setting/pages/admin/paymentSetting/PaymentSetting.jsx +49 -49
- package/src/modules/setting/pages/admin/paymentSetting/index.js +10 -10
- package/src/modules/setting/pages/admin/paymentSetting/route.json +4 -4
- package/src/modules/setting/pages/admin/storeSetting/StoreSetting.jsx +407 -407
- package/src/modules/setting/pages/admin/storeSetting/index.js +10 -10
- package/src/modules/setting/pages/admin/storeSetting/route.json +4 -4
- package/src/modules/setting/services/setting.js +20 -20
- package/src/modules/stripe/api/capturePaymentIntent/[context]bodyParser[auth].js +5 -0
- package/src/modules/stripe/api/capturePaymentIntent/capturePaymentIntent.js +105 -0
- package/src/modules/stripe/api/capturePaymentIntent/payloadSchema.json +15 -0
- package/src/modules/stripe/api/capturePaymentIntent/route.json +5 -0
- package/src/modules/stripe/api/createPaymentIntent/[context]bodyParser[auth].js +5 -5
- package/src/modules/stripe/api/createPaymentIntent/createPaymentIntent.js +66 -57
- package/src/modules/stripe/api/createPaymentIntent/payloadSchema.json +19 -15
- package/src/modules/stripe/api/createPaymentIntent/route.json +5 -5
- package/src/modules/stripe/api/getPaymentMethods/registerStripe[sendMethods].js +22 -22
- package/src/modules/stripe/api/refundPaymentIntent/[context]bodyParser[auth].js +5 -0
- package/src/modules/stripe/api/refundPaymentIntent/payloadSchema.json +22 -0
- package/src/modules/stripe/api/refundPaymentIntent/refundPaymentIntent.js +105 -0
- package/src/modules/stripe/api/refundPaymentIntent/route.json +5 -0
- package/src/modules/stripe/api/stripeWebHook/[bodyJson]webhook.js +150 -107
- package/src/modules/stripe/api/stripeWebHook/bodyJson.js +5 -5
- package/src/modules/stripe/api/stripeWebHook/route.json +5 -5
- package/src/modules/stripe/bootstrap.js +75 -27
- package/src/modules/stripe/graphql/types/StripeSetting/StripeSetting.admin.graphql +4 -4
- package/src/modules/stripe/graphql/types/StripeSetting/StripeSetting.admin.resolvers.js +62 -62
- package/src/modules/stripe/graphql/types/StripeSetting/StripeSetting.graphql +6 -5
- package/src/modules/stripe/graphql/types/StripeSetting/StripeSetting.resolvers.js +54 -44
- package/src/modules/stripe/pages/admin/orderEdit/StripeCaptureButton.jsx +74 -0
- package/src/modules/stripe/pages/admin/orderEdit/StripeRefundButton.jsx +139 -0
- package/src/modules/stripe/pages/admin/paymentSetting/StripePayment.jsx +140 -117
- package/src/modules/stripe/pages/frontStore/checkout/Stripe.jsx +191 -137
- package/src/modules/stripe/pages/frontStore/stripeReturn/index.js +74 -0
- package/src/modules/stripe/pages/frontStore/stripeReturn/route.json +4 -0
- package/src/modules/stripe/services/cancelPayment.js +44 -0
- package/src/modules/tax/api/createTaxClass/[context]borderParser[auth].js +5 -5
- package/src/modules/tax/api/createTaxClass/createTaxClass.js +42 -42
- package/src/modules/tax/api/createTaxClass/payloadSchema.json +12 -12
- package/src/modules/tax/api/createTaxClass/route.json +5 -5
- package/src/modules/tax/api/createTaxRate/[context]borderParser[auth].js +5 -5
- package/src/modules/tax/api/createTaxRate/createTaxRate.js +69 -69
- package/src/modules/tax/api/createTaxRate/payloadSchema.json +34 -34
- package/src/modules/tax/api/createTaxRate/route.json +5 -5
- package/src/modules/tax/api/deleteTaxRate/[context]borderParser[auth].js +5 -5
- package/src/modules/tax/api/deleteTaxRate/deleteTaxRate.js +56 -56
- package/src/modules/tax/api/deleteTaxRate/route.json +5 -5
- package/src/modules/tax/api/updateTaxClass/[context]borderParser[auth].js +5 -5
- package/src/modules/tax/api/updateTaxClass/payloadSchema.json +12 -12
- package/src/modules/tax/api/updateTaxClass/route.json +5 -5
- package/src/modules/tax/api/updateTaxClass/updateTaxClass.js +63 -63
- package/src/modules/tax/api/updateTaxRate/[context]borderParser[auth].js +5 -5
- package/src/modules/tax/api/updateTaxRate/payloadSchema.json +34 -34
- package/src/modules/tax/api/updateTaxRate/route.json +5 -5
- package/src/modules/tax/api/updateTaxRate/updateTaxRate.js +69 -69
- package/src/modules/tax/bootstrap.js +68 -68
- package/src/modules/tax/graphql/types/Product/Price/ProductPrice.resolvers.js +15 -15
- package/src/modules/tax/graphql/types/TaxClass/TaxClass.admin.graphql +42 -42
- package/src/modules/tax/graphql/types/TaxClass/TaxClass.admin.resolvers.js +37 -37
- package/src/modules/tax/graphql/types/TaxSetting/TaxSetting.admin.graphql +5 -5
- package/src/modules/tax/graphql/types/TaxSetting/TaxSetting.admin.resolvers.js +34 -34
- package/src/modules/tax/graphql/types/TaxSetting/TaxSetting.graphql +3 -3
- package/src/modules/tax/graphql/types/TaxSetting/TaxSetting.resolvers.js +7 -7
- package/src/modules/tax/migration/Version-1.0.0.js +86 -86
- package/src/modules/tax/pages/admin/all/TaxSettingMenu.jsx +26 -26
- package/src/modules/tax/pages/admin/taxSetting/TaxSetting.jsx +230 -230
- package/src/modules/tax/pages/admin/taxSetting/index.js +10 -10
- package/src/modules/tax/pages/admin/taxSetting/route.json +4 -4
- package/src/modules/tax/services/TaxClassCollection.js +59 -59
- package/src/modules/tax/services/calculateTaxAmount.js +57 -57
- package/src/modules/tax/services/getTaxPercent.js +14 -14
- package/src/modules/tax/services/getTaxRates.js +66 -66
- package/src/modules/tax/services/registerCartItemTaxPercentField.js +76 -76
- package/src/modules/tax/services/registerDefaultTaxClassCollectionFilters.js +49 -49
- package/src/components/admin/oms/orderEdit/payment/Transactions.jsx +0 -40
- package/src/lib/middleware/tests/app/modules/basecopy/pages/global/[auth]notification[response].js +0 -3
- package/src/modules/base/pages/global/[auth]notification[response].js +0 -7
- package/src/modules/customer/services/addressValidator.js +0 -34
- package/src/modules/oms/pages/admin/orderEdit/PaymentStatus.jsx +0 -45
- package/src/modules/paypal/api/paypalGetAccessToken/[bodyParser]getAccessToken.js +0 -87
|
@@ -1,1085 +1,1085 @@
|
|
|
1
|
-
module.exports.timezones = [
|
|
2
|
-
{
|
|
3
|
-
code: 'Australia/Darwin',
|
|
4
|
-
name: 'AUS Central Standard Time (Australia/Darwin)'
|
|
5
|
-
},
|
|
6
|
-
{
|
|
7
|
-
code: 'Australia/Melbourne',
|
|
8
|
-
name: 'AUS Eastern Standard Time (Australia/Melbourne)'
|
|
9
|
-
},
|
|
10
|
-
{
|
|
11
|
-
code: 'Australia/Sydney',
|
|
12
|
-
name: 'AUS Eastern Standard Time (Australia/Sydney)'
|
|
13
|
-
},
|
|
14
|
-
{ code: 'Asia/Kabul', name: 'Afghanistan Standard Time (Asia/Kabul)' },
|
|
15
|
-
{
|
|
16
|
-
code: 'America/Anchorage',
|
|
17
|
-
name: 'Alaskan Standard Time (America/Anchorage)'
|
|
18
|
-
},
|
|
19
|
-
{ code: 'America/Juneau', name: 'Alaskan Standard Time (America/Juneau)' },
|
|
20
|
-
{ code: 'America/Nome', name: 'Alaskan Standard Time (America/Nome)' },
|
|
21
|
-
{ code: 'America/Sitka', name: 'Alaskan Standard Time (America/Sitka)' },
|
|
22
|
-
{ code: 'America/Yakutat', name: 'Alaskan Standard Time (America/Yakutat)' },
|
|
23
|
-
{ code: 'Asia/Aden', name: 'Arab Standard Time (Asia/Aden)' },
|
|
24
|
-
{ code: 'Asia/Bahrain', name: 'Arab Standard Time (Asia/Bahrain)' },
|
|
25
|
-
{ code: 'Asia/Kuwait', name: 'Arab Standard Time (Asia/Kuwait)' },
|
|
26
|
-
{ code: 'Asia/Qatar', name: 'Arab Standard Time (Asia/Qatar)' },
|
|
27
|
-
{ code: 'Asia/Riyadh', name: 'Arab Standard Time (Asia/Riyadh)' },
|
|
28
|
-
{ code: 'Asia/Dubai', name: 'Arabian Standard Time (Asia/Dubai)' },
|
|
29
|
-
{ code: 'Asia/Muscat', name: 'Arabian Standard Time (Asia/Muscat)' },
|
|
30
|
-
{ code: 'Etc/GMT-4', name: 'Arabian Standard Time (Etc/GMT-4)' },
|
|
31
|
-
{ code: 'Asia/Baghdad', name: 'Arabic Standard Time (Asia/Baghdad)' },
|
|
32
|
-
{
|
|
33
|
-
code: 'America/Argentina/La_Rioja',
|
|
34
|
-
name: 'Argentina Standard Time (America/Argentina/La_Rioja)'
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
code: 'America/Argentina/Rio_Gallegos',
|
|
38
|
-
name: 'Argentina Standard Time (America/Argentina/Rio_Gallegos)'
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
code: 'America/Argentina/Salta',
|
|
42
|
-
name: 'Argentina Standard Time (America/Argentina/Salta)'
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
code: 'America/Argentina/San_Juan',
|
|
46
|
-
name: 'Argentina Standard Time (America/Argentina/San_Juan)'
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
code: 'America/Argentina/San_Luis',
|
|
50
|
-
name: 'Argentina Standard Time (America/Argentina/San_Luis)'
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
code: 'America/Argentina/Tucuman',
|
|
54
|
-
name: 'Argentina Standard Time (America/Argentina/Tucuman)'
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
code: 'America/Argentina/Ushuaia',
|
|
58
|
-
name: 'Argentina Standard Time (America/Argentina/Ushuaia)'
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
code: 'America/Buenos_Aires',
|
|
62
|
-
name: 'Argentina Standard Time (America/Buenos_Aires)'
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
code: 'America/Catamarca',
|
|
66
|
-
name: 'Argentina Standard Time (America/Catamarca)'
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
code: 'America/Cordoba',
|
|
70
|
-
name: 'Argentina Standard Time (America/Cordoba)'
|
|
71
|
-
},
|
|
72
|
-
{ code: 'America/Jujuy', name: 'Argentina Standard Time (America/Jujuy)' },
|
|
73
|
-
{
|
|
74
|
-
code: 'America/Mendoza',
|
|
75
|
-
name: 'Argentina Standard Time (America/Mendoza)'
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
code: 'America/Glace_Bay',
|
|
79
|
-
name: 'Atlantic Standard Time (America/Glace_Bay)'
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
code: 'America/Goose_Bay',
|
|
83
|
-
name: 'Atlantic Standard Time (America/Goose_Bay)'
|
|
84
|
-
},
|
|
85
|
-
{ code: 'America/Halifax', name: 'Atlantic Standard Time (America/Halifax)' },
|
|
86
|
-
{ code: 'America/Moncton', name: 'Atlantic Standard Time (America/Moncton)' },
|
|
87
|
-
{ code: 'America/Thule', name: 'Atlantic Standard Time (America/Thule)' },
|
|
88
|
-
{
|
|
89
|
-
code: 'Atlantic/Bermuda',
|
|
90
|
-
name: 'Atlantic Standard Time (Atlantic/Bermuda)'
|
|
91
|
-
},
|
|
92
|
-
{ code: 'Asia/Baku', name: 'Azerbaijan Standard Time (Asia/Baku)' },
|
|
93
|
-
{
|
|
94
|
-
code: 'America/Scoresbysund',
|
|
95
|
-
name: 'Azores Standard Time (America/Scoresbysund)'
|
|
96
|
-
},
|
|
97
|
-
{ code: 'Atlantic/Azores', name: 'Azores Standard Time (Atlantic/Azores)' },
|
|
98
|
-
{ code: 'America/Bahia', name: 'Bahia Standard Time (America/Bahia)' },
|
|
99
|
-
{ code: 'Asia/Dhaka', name: 'Bangladesh Standard Time (Asia/Dhaka)' },
|
|
100
|
-
{ code: 'Asia/Thimphu', name: 'Bangladesh Standard Time (Asia/Thimphu)' },
|
|
101
|
-
{
|
|
102
|
-
code: 'America/Regina',
|
|
103
|
-
name: 'Canada Central Standard Time (America/Regina)'
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
code: 'America/Swift_Current',
|
|
107
|
-
name: 'Canada Central Standard Time (America/Swift_Current)'
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
code: 'Atlantic/Cape_Verde',
|
|
111
|
-
name: 'Cape Verde Standard Time (Atlantic/Cape_Verde)'
|
|
112
|
-
},
|
|
113
|
-
{ code: 'Etc/GMT+1', name: 'Cape Verde Standard Time (Etc/GMT+1)' },
|
|
114
|
-
{ code: 'Asia/Yerevan', name: 'Caucasus Standard Time (Asia/Yerevan)' },
|
|
115
|
-
{
|
|
116
|
-
code: 'Australia/Adelaide',
|
|
117
|
-
name: 'Cen. Australia Standard Time (Australia/Adelaide)'
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
code: 'Australia/Broken_Hill',
|
|
121
|
-
name: 'Cen. Australia Standard Time (Australia/Broken_Hill)'
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
code: 'America/Belize',
|
|
125
|
-
name: 'Central America Standard Time (America/Belize)'
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
code: 'America/Costa_Rica',
|
|
129
|
-
name: 'Central America Standard Time (America/Costa_Rica)'
|
|
130
|
-
},
|
|
131
|
-
{
|
|
132
|
-
code: 'America/El_Salvador',
|
|
133
|
-
name: 'Central America Standard Time (America/El_Salvador)'
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
code: 'America/Guatemala',
|
|
137
|
-
name: 'Central America Standard Time (America/Guatemala)'
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
code: 'America/Managua',
|
|
141
|
-
name: 'Central America Standard Time (America/Managua)'
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
code: 'America/Tegucigalpa',
|
|
145
|
-
name: 'Central America Standard Time (America/Tegucigalpa)'
|
|
146
|
-
},
|
|
147
|
-
{ code: 'Etc/GMT+6', name: 'Central America Standard Time (Etc/GMT+6)' },
|
|
148
|
-
{
|
|
149
|
-
code: 'Pacific/Galapagos',
|
|
150
|
-
name: 'Central America Standard Time (Pacific/Galapagos)'
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
code: 'Antarctica/Vostok',
|
|
154
|
-
name: 'Central Asia Standard Time (Antarctica/Vostok)'
|
|
155
|
-
},
|
|
156
|
-
{ code: 'Asia/Almaty', name: 'Central Asia Standard Time (Asia/Almaty)' },
|
|
157
|
-
{ code: 'Asia/Bishkek', name: 'Central Asia Standard Time (Asia/Bishkek)' },
|
|
158
|
-
{
|
|
159
|
-
code: 'Asia/Qyzylorda',
|
|
160
|
-
name: 'Central Asia Standard Time (Asia/Qyzylorda)'
|
|
161
|
-
},
|
|
162
|
-
{ code: 'Etc/GMT-6', name: 'Central Asia Standard Time (Etc/GMT-6)' },
|
|
163
|
-
{ code: 'Indian/Chagos', name: 'Central Asia Standard Time (Indian/Chagos)' },
|
|
164
|
-
{
|
|
165
|
-
code: 'America/Campo_Grande',
|
|
166
|
-
name: 'Central Brazilian Standard Time (America/Campo_Grande)'
|
|
167
|
-
},
|
|
168
|
-
{
|
|
169
|
-
code: 'America/Cuiaba',
|
|
170
|
-
name: 'Central Brazilian Standard Time (America/Cuiaba)'
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
code: 'Europe/Belgrade',
|
|
174
|
-
name: 'Central Europe Standard Time (Europe/Belgrade)'
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
code: 'Europe/Bratislava',
|
|
178
|
-
name: 'Central Europe Standard Time (Europe/Bratislava)'
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
code: 'Europe/Budapest',
|
|
182
|
-
name: 'Central Europe Standard Time (Europe/Budapest)'
|
|
183
|
-
},
|
|
184
|
-
{
|
|
185
|
-
code: 'Europe/Ljubljana',
|
|
186
|
-
name: 'Central Europe Standard Time (Europe/Ljubljana)'
|
|
187
|
-
},
|
|
188
|
-
{
|
|
189
|
-
code: 'Europe/Podgorica',
|
|
190
|
-
name: 'Central Europe Standard Time (Europe/Podgorica)'
|
|
191
|
-
},
|
|
192
|
-
{
|
|
193
|
-
code: 'Europe/Prague',
|
|
194
|
-
name: 'Central Europe Standard Time (Europe/Prague)'
|
|
195
|
-
},
|
|
196
|
-
{
|
|
197
|
-
code: 'Europe/Tirane',
|
|
198
|
-
name: 'Central Europe Standard Time (Europe/Tirane)'
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
code: 'Europe/Sarajevo',
|
|
202
|
-
name: 'Central European Standard Time (Europe/Sarajevo)'
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
code: 'Europe/Skopje',
|
|
206
|
-
name: 'Central European Standard Time (Europe/Skopje)'
|
|
207
|
-
},
|
|
208
|
-
{
|
|
209
|
-
code: 'Europe/Warsaw',
|
|
210
|
-
name: 'Central European Standard Time (Europe/Warsaw)'
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
code: 'Europe/Zagreb',
|
|
214
|
-
name: 'Central European Standard Time (Europe/Zagreb)'
|
|
215
|
-
},
|
|
216
|
-
{
|
|
217
|
-
code: 'Antarctica/Macquarie',
|
|
218
|
-
name: 'Central Pacific Standard Time (Antarctica/Macquarie)'
|
|
219
|
-
},
|
|
220
|
-
{ code: 'Etc/GMT-11', name: 'Central Pacific Standard Time (Etc/GMT-11)' },
|
|
221
|
-
{
|
|
222
|
-
code: 'Pacific/Efate',
|
|
223
|
-
name: 'Central Pacific Standard Time (Pacific/Efate)'
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
code: 'Pacific/Guadalcanal',
|
|
227
|
-
name: 'Central Pacific Standard Time (Pacific/Guadalcanal)'
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
code: 'Pacific/Kosrae',
|
|
231
|
-
name: 'Central Pacific Standard Time (Pacific/Kosrae)'
|
|
232
|
-
},
|
|
233
|
-
{
|
|
234
|
-
code: 'Pacific/Noumea',
|
|
235
|
-
name: 'Central Pacific Standard Time (Pacific/Noumea)'
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
code: 'Pacific/Ponape',
|
|
239
|
-
name: 'Central Pacific Standard Time (Pacific/Ponape)'
|
|
240
|
-
},
|
|
241
|
-
{ code: 'America/Chicago', name: 'Central Standard Time (America/Chicago)' },
|
|
242
|
-
{
|
|
243
|
-
code: 'America/Indiana/Knox',
|
|
244
|
-
name: 'Central Standard Time (America/Indiana/Knox)'
|
|
245
|
-
},
|
|
246
|
-
{
|
|
247
|
-
code: 'America/Indiana/Tell_City',
|
|
248
|
-
name: 'Central Standard Time (America/Indiana/Tell_City)'
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
code: 'America/Matamoros',
|
|
252
|
-
name: 'Central Standard Time (America/Matamoros)'
|
|
253
|
-
},
|
|
254
|
-
{
|
|
255
|
-
code: 'America/Menominee',
|
|
256
|
-
name: 'Central Standard Time (America/Menominee)'
|
|
257
|
-
},
|
|
258
|
-
{
|
|
259
|
-
code: 'America/North_Dakota/Beulah',
|
|
260
|
-
name: 'Central Standard Time (America/North_Dakota/Beulah)'
|
|
261
|
-
},
|
|
262
|
-
{
|
|
263
|
-
code: 'America/North_Dakota/Center',
|
|
264
|
-
name: 'Central Standard Time (America/North_Dakota/Center)'
|
|
265
|
-
},
|
|
266
|
-
{
|
|
267
|
-
code: 'America/North_Dakota/New_Salem',
|
|
268
|
-
name: 'Central Standard Time (America/North_Dakota/New_Salem)'
|
|
269
|
-
},
|
|
270
|
-
{
|
|
271
|
-
code: 'America/Rainy_River',
|
|
272
|
-
name: 'Central Standard Time (America/Rainy_River)'
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
code: 'America/Rankin_Inlet',
|
|
276
|
-
name: 'Central Standard Time (America/Rankin_Inlet)'
|
|
277
|
-
},
|
|
278
|
-
{
|
|
279
|
-
code: 'America/Resolute',
|
|
280
|
-
name: 'Central Standard Time (America/Resolute)'
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
code: 'America/Winnipeg',
|
|
284
|
-
name: 'Central Standard Time (America/Winnipeg)'
|
|
285
|
-
},
|
|
286
|
-
{ code: 'CST6CDT', name: 'Central Standard Time (CST6CDT)' },
|
|
287
|
-
{
|
|
288
|
-
code: 'America/Bahia_Banderas',
|
|
289
|
-
name: 'Central Standard Time (Mexico) (America/Bahia_Banderas)'
|
|
290
|
-
},
|
|
291
|
-
{
|
|
292
|
-
code: 'America/Cancun',
|
|
293
|
-
name: 'Central Standard Time (Mexico) (America/Cancun)'
|
|
294
|
-
},
|
|
295
|
-
{
|
|
296
|
-
code: 'America/Merida',
|
|
297
|
-
name: 'Central Standard Time (Mexico) (America/Merida)'
|
|
298
|
-
},
|
|
299
|
-
{
|
|
300
|
-
code: 'America/Mexico_City',
|
|
301
|
-
name: 'Central Standard Time (Mexico) (America/Mexico_City)'
|
|
302
|
-
},
|
|
303
|
-
{
|
|
304
|
-
code: 'America/Monterrey',
|
|
305
|
-
name: 'Central Standard Time (Mexico) (America/Monterrey)'
|
|
306
|
-
},
|
|
307
|
-
{ code: 'Asia/Chongqing', name: 'China Standard Time (Asia/Chongqing)' },
|
|
308
|
-
{ code: 'Asia/Harbin', name: 'China Standard Time (Asia/Harbin)' },
|
|
309
|
-
{ code: 'Asia/Hong_Kong', name: 'China Standard Time (Asia/Hong_Kong)' },
|
|
310
|
-
{ code: 'Asia/Kashgar', name: 'China Standard Time (Asia/Kashgar)' },
|
|
311
|
-
{ code: 'Asia/Macau', name: 'China Standard Time (Asia/Macau)' },
|
|
312
|
-
{ code: 'Asia/Shanghai', name: 'China Standard Time (Asia/Shanghai)' },
|
|
313
|
-
{ code: 'Asia/Urumqi', name: 'China Standard Time (Asia/Urumqi)' },
|
|
314
|
-
{ code: 'Etc/GMT+12', name: 'Dateline Standard Time (Etc/GMT+12)' },
|
|
315
|
-
{
|
|
316
|
-
code: 'Africa/Addis_Ababa',
|
|
317
|
-
name: 'E. Africa Standard Time (Africa/Addis_Ababa)'
|
|
318
|
-
},
|
|
319
|
-
{ code: 'Africa/Asmera', name: 'E. Africa Standard Time (Africa/Asmera)' },
|
|
320
|
-
{
|
|
321
|
-
code: 'Africa/Dar_es_Salaam',
|
|
322
|
-
name: 'E. Africa Standard Time (Africa/Dar_es_Salaam)'
|
|
323
|
-
},
|
|
324
|
-
{
|
|
325
|
-
code: 'Africa/Djibouti',
|
|
326
|
-
name: 'E. Africa Standard Time (Africa/Djibouti)'
|
|
327
|
-
},
|
|
328
|
-
{ code: 'Africa/Juba', name: 'E. Africa Standard Time (Africa/Juba)' },
|
|
329
|
-
{ code: 'Africa/Kampala', name: 'E. Africa Standard Time (Africa/Kampala)' },
|
|
330
|
-
{
|
|
331
|
-
code: 'Africa/Khartoum',
|
|
332
|
-
name: 'E. Africa Standard Time (Africa/Khartoum)'
|
|
333
|
-
},
|
|
334
|
-
{
|
|
335
|
-
code: 'Africa/Mogadishu',
|
|
336
|
-
name: 'E. Africa Standard Time (Africa/Mogadishu)'
|
|
337
|
-
},
|
|
338
|
-
{ code: 'Africa/Nairobi', name: 'E. Africa Standard Time (Africa/Nairobi)' },
|
|
339
|
-
{
|
|
340
|
-
code: 'Antarctica/Syowa',
|
|
341
|
-
name: 'E. Africa Standard Time (Antarctica/Syowa)'
|
|
342
|
-
},
|
|
343
|
-
{ code: 'Etc/GMT-3', name: 'E. Africa Standard Time (Etc/GMT-3)' },
|
|
344
|
-
{
|
|
345
|
-
code: 'Indian/Antananarivo',
|
|
346
|
-
name: 'E. Africa Standard Time (Indian/Antananarivo)'
|
|
347
|
-
},
|
|
348
|
-
{ code: 'Indian/Comoro', name: 'E. Africa Standard Time (Indian/Comoro)' },
|
|
349
|
-
{ code: 'Indian/Mayotte', name: 'E. Africa Standard Time (Indian/Mayotte)' },
|
|
350
|
-
{
|
|
351
|
-
code: 'Australia/Brisbane',
|
|
352
|
-
name: 'E. Australia Standard Time (Australia/Brisbane)'
|
|
353
|
-
},
|
|
354
|
-
{
|
|
355
|
-
code: 'Australia/Lindeman',
|
|
356
|
-
name: 'E. Australia Standard Time (Australia/Lindeman)'
|
|
357
|
-
},
|
|
358
|
-
{
|
|
359
|
-
code: 'America/Sao_Paulo',
|
|
360
|
-
name: 'E. South America Standard Time (America/Sao_Paulo)'
|
|
361
|
-
},
|
|
362
|
-
{ code: 'America/Detroit', name: 'Eastern Standard Time (America/Detroit)' },
|
|
363
|
-
{
|
|
364
|
-
code: 'America/Grand_Turk',
|
|
365
|
-
name: 'Eastern Standard Time (America/Grand_Turk)'
|
|
366
|
-
},
|
|
367
|
-
{ code: 'America/Havana', name: 'Eastern Standard Time (America/Havana)' },
|
|
368
|
-
{
|
|
369
|
-
code: 'America/Indiana/Petersburg',
|
|
370
|
-
name: 'Eastern Standard Time (America/Indiana/Petersburg)'
|
|
371
|
-
},
|
|
372
|
-
{
|
|
373
|
-
code: 'America/Indiana/Vincennes',
|
|
374
|
-
name: 'Eastern Standard Time (America/Indiana/Vincennes)'
|
|
375
|
-
},
|
|
376
|
-
{
|
|
377
|
-
code: 'America/Indiana/Winamac',
|
|
378
|
-
name: 'Eastern Standard Time (America/Indiana/Winamac)'
|
|
379
|
-
},
|
|
380
|
-
{ code: 'America/Iqaluit', name: 'Eastern Standard Time (America/Iqaluit)' },
|
|
381
|
-
{
|
|
382
|
-
code: 'America/Kentucky/Monticello',
|
|
383
|
-
name: 'Eastern Standard Time (America/Kentucky/Monticello)'
|
|
384
|
-
},
|
|
385
|
-
{
|
|
386
|
-
code: 'America/Louisville',
|
|
387
|
-
name: 'Eastern Standard Time (America/Louisville)'
|
|
388
|
-
},
|
|
389
|
-
{
|
|
390
|
-
code: 'America/Montreal',
|
|
391
|
-
name: 'Eastern Standard Time (America/Montreal)'
|
|
392
|
-
},
|
|
393
|
-
{ code: 'America/Nassau', name: 'Eastern Standard Time (America/Nassau)' },
|
|
394
|
-
{
|
|
395
|
-
code: 'America/New_York',
|
|
396
|
-
name: 'Eastern Standard Time (America/New_York)'
|
|
397
|
-
},
|
|
398
|
-
{ code: 'America/Nipigon', name: 'Eastern Standard Time (America/Nipigon)' },
|
|
399
|
-
{
|
|
400
|
-
code: 'America/Pangnirtung',
|
|
401
|
-
name: 'Eastern Standard Time (America/Pangnirtung)'
|
|
402
|
-
},
|
|
403
|
-
{
|
|
404
|
-
code: 'America/Port-au-Prince',
|
|
405
|
-
name: 'Eastern Standard Time (America/Port-au-Prince)'
|
|
406
|
-
},
|
|
407
|
-
{
|
|
408
|
-
code: 'America/Thunder_Bay',
|
|
409
|
-
name: 'Eastern Standard Time (America/Thunder_Bay)'
|
|
410
|
-
},
|
|
411
|
-
{ code: 'America/Toronto', name: 'Eastern Standard Time (America/Toronto)' },
|
|
412
|
-
{ code: 'EST5EDT', name: 'Eastern Standard Time (EST5EDT)' },
|
|
413
|
-
{ code: 'Africa/Cairo', name: 'Egypt Standard Time (Africa/Cairo)' },
|
|
414
|
-
{
|
|
415
|
-
code: 'Asia/Yekaterinburg',
|
|
416
|
-
name: 'Ekaterinburg Standard Time (Asia/Yekaterinburg)'
|
|
417
|
-
},
|
|
418
|
-
{ code: 'Europe/Helsinki', name: 'FLE Standard Time (Europe/Helsinki)' },
|
|
419
|
-
{ code: 'Europe/Kiev', name: 'FLE Standard Time (Europe/Kiev)' },
|
|
420
|
-
{ code: 'Europe/Mariehamn', name: 'FLE Standard Time (Europe/Mariehamn)' },
|
|
421
|
-
{ code: 'Europe/Riga', name: 'FLE Standard Time (Europe/Riga)' },
|
|
422
|
-
{ code: 'Europe/Simferopol', name: 'FLE Standard Time (Europe/Simferopol)' },
|
|
423
|
-
{ code: 'Europe/Sofia', name: 'FLE Standard Time (Europe/Sofia)' },
|
|
424
|
-
{ code: 'Europe/Tallinn', name: 'FLE Standard Time (Europe/Tallinn)' },
|
|
425
|
-
{ code: 'Europe/Uzhgorod', name: 'FLE Standard Time (Europe/Uzhgorod)' },
|
|
426
|
-
{ code: 'Europe/Vilnius', name: 'FLE Standard Time (Europe/Vilnius)' },
|
|
427
|
-
{ code: 'Europe/Zaporozhye', name: 'FLE Standard Time (Europe/Zaporozhye)' },
|
|
428
|
-
{ code: 'Pacific/Fiji', name: 'Fiji Standard Time (Pacific/Fiji)' },
|
|
429
|
-
{ code: 'Atlantic/Canary', name: 'GMT Standard Time (Atlantic/Canary)' },
|
|
430
|
-
{ code: 'Atlantic/Faeroe', name: 'GMT Standard Time (Atlantic/Faeroe)' },
|
|
431
|
-
{ code: 'Atlantic/Madeira', name: 'GMT Standard Time (Atlantic/Madeira)' },
|
|
432
|
-
{ code: 'Europe/Dublin', name: 'GMT Standard Time (Europe/Dublin)' },
|
|
433
|
-
{ code: 'Europe/Guernsey', name: 'GMT Standard Time (Europe/Guernsey)' },
|
|
434
|
-
{
|
|
435
|
-
code: 'Europe/Isle_of_Man',
|
|
436
|
-
name: 'GMT Standard Time (Europe/Isle_of_Man)'
|
|
437
|
-
},
|
|
438
|
-
{ code: 'Europe/Jersey', name: 'GMT Standard Time (Europe/Jersey)' },
|
|
439
|
-
{ code: 'Europe/Lisbon', name: 'GMT Standard Time (Europe/Lisbon)' },
|
|
440
|
-
{ code: 'Europe/London', name: 'GMT Standard Time (Europe/London)' },
|
|
441
|
-
{ code: 'Asia/Nicosia', name: 'GTB Standard Time (Asia/Nicosia)' },
|
|
442
|
-
{ code: 'Europe/Athens', name: 'GTB Standard Time (Europe/Athens)' },
|
|
443
|
-
{ code: 'Europe/Bucharest', name: 'GTB Standard Time (Europe/Bucharest)' },
|
|
444
|
-
{ code: 'Europe/Chisinau', name: 'GTB Standard Time (Europe/Chisinau)' },
|
|
445
|
-
{ code: 'Asia/Tbilisi', name: 'Georgian Standard Time (Asia/Tbilisi)' },
|
|
446
|
-
{
|
|
447
|
-
code: 'America/Godthab',
|
|
448
|
-
name: 'Greenland Standard Time (America/Godthab)'
|
|
449
|
-
},
|
|
450
|
-
{ code: 'Africa/Abidjan', name: 'Greenwich Standard Time (Africa/Abidjan)' },
|
|
451
|
-
{ code: 'Africa/Accra', name: 'Greenwich Standard Time (Africa/Accra)' },
|
|
452
|
-
{ code: 'Africa/Bamako', name: 'Greenwich Standard Time (Africa/Bamako)' },
|
|
453
|
-
{ code: 'Africa/Banjul', name: 'Greenwich Standard Time (Africa/Banjul)' },
|
|
454
|
-
{ code: 'Africa/Bissau', name: 'Greenwich Standard Time (Africa/Bissau)' },
|
|
455
|
-
{ code: 'Africa/Conakry', name: 'Greenwich Standard Time (Africa/Conakry)' },
|
|
456
|
-
{ code: 'Africa/Dakar', name: 'Greenwich Standard Time (Africa/Dakar)' },
|
|
457
|
-
{
|
|
458
|
-
code: 'Africa/Freetown',
|
|
459
|
-
name: 'Greenwich Standard Time (Africa/Freetown)'
|
|
460
|
-
},
|
|
461
|
-
{ code: 'Africa/Lome', name: 'Greenwich Standard Time (Africa/Lome)' },
|
|
462
|
-
{
|
|
463
|
-
code: 'Africa/Monrovia',
|
|
464
|
-
name: 'Greenwich Standard Time (Africa/Monrovia)'
|
|
465
|
-
},
|
|
466
|
-
{
|
|
467
|
-
code: 'Africa/Nouakchott',
|
|
468
|
-
name: 'Greenwich Standard Time (Africa/Nouakchott)'
|
|
469
|
-
},
|
|
470
|
-
{
|
|
471
|
-
code: 'Africa/Ouagadougou',
|
|
472
|
-
name: 'Greenwich Standard Time (Africa/Ouagadougou)'
|
|
473
|
-
},
|
|
474
|
-
{
|
|
475
|
-
code: 'Africa/Sao_Tome',
|
|
476
|
-
name: 'Greenwich Standard Time (Africa/Sao_Tome)'
|
|
477
|
-
},
|
|
478
|
-
{
|
|
479
|
-
code: 'Atlantic/Reykjavik',
|
|
480
|
-
name: 'Greenwich Standard Time (Atlantic/Reykjavik)'
|
|
481
|
-
},
|
|
482
|
-
{
|
|
483
|
-
code: 'Atlantic/St_Helena',
|
|
484
|
-
name: 'Greenwich Standard Time (Atlantic/St_Helena)'
|
|
485
|
-
},
|
|
486
|
-
{ code: 'Etc/GMT+10', name: 'Hawaiian Standard Time (Etc/GMT+10)' },
|
|
487
|
-
{
|
|
488
|
-
code: 'Pacific/Honolulu',
|
|
489
|
-
name: 'Hawaiian Standard Time (Pacific/Honolulu)'
|
|
490
|
-
},
|
|
491
|
-
{
|
|
492
|
-
code: 'Pacific/Johnston',
|
|
493
|
-
name: 'Hawaiian Standard Time (Pacific/Johnston)'
|
|
494
|
-
},
|
|
495
|
-
{
|
|
496
|
-
code: 'Pacific/Rarotonga',
|
|
497
|
-
name: 'Hawaiian Standard Time (Pacific/Rarotonga)'
|
|
498
|
-
},
|
|
499
|
-
{ code: 'Pacific/Tahiti', name: 'Hawaiian Standard Time (Pacific/Tahiti)' },
|
|
500
|
-
{ code: 'Asia/Calcutta', name: 'India Standard Time (Asia/Calcutta)' },
|
|
501
|
-
{ code: 'Asia/Tehran', name: 'Iran Standard Time (Asia/Tehran)' },
|
|
502
|
-
{ code: 'Asia/Jerusalem', name: 'Israel Standard Time (Asia/Jerusalem)' },
|
|
503
|
-
{ code: 'Asia/Amman', name: 'Jordan Standard Time (Asia/Amman)' },
|
|
504
|
-
{
|
|
505
|
-
code: 'Europe/Kaliningrad',
|
|
506
|
-
name: 'Kaliningrad Standard Time (Europe/Kaliningrad)'
|
|
507
|
-
},
|
|
508
|
-
{ code: 'Europe/Minsk', name: 'Kaliningrad Standard Time (Europe/Minsk)' },
|
|
509
|
-
{ code: 'Asia/Pyongyang', name: 'Korea Standard Time (Asia/Pyongyang)' },
|
|
510
|
-
{ code: 'Asia/Seoul', name: 'Korea Standard Time (Asia/Seoul)' },
|
|
511
|
-
{ code: 'Africa/Tripoli', name: 'Libya Standard Time (Africa/Tripoli)' },
|
|
512
|
-
{ code: 'Asia/Anadyr', name: 'Magadan Standard Time (Asia/Anadyr)' },
|
|
513
|
-
{ code: 'Asia/Kamchatka', name: 'Magadan Standard Time (Asia/Kamchatka)' },
|
|
514
|
-
{ code: 'Asia/Magadan', name: 'Magadan Standard Time (Asia/Magadan)' },
|
|
515
|
-
{ code: 'Indian/Mahe', name: 'Mauritius Standard Time (Indian/Mahe)' },
|
|
516
|
-
{
|
|
517
|
-
code: 'Indian/Mauritius',
|
|
518
|
-
name: 'Mauritius Standard Time (Indian/Mauritius)'
|
|
519
|
-
},
|
|
520
|
-
{ code: 'Indian/Reunion', name: 'Mauritius Standard Time (Indian/Reunion)' },
|
|
521
|
-
{ code: 'Asia/Beirut', name: 'Middle East Standard Time (Asia/Beirut)' },
|
|
522
|
-
{
|
|
523
|
-
code: 'America/Montevideo',
|
|
524
|
-
name: 'Montevideo Standard Time (America/Montevideo)'
|
|
525
|
-
},
|
|
526
|
-
{
|
|
527
|
-
code: 'Africa/Casablanca',
|
|
528
|
-
name: 'Morocco Standard Time (Africa/Casablanca)'
|
|
529
|
-
},
|
|
530
|
-
{ code: 'Africa/El_Aaiun', name: 'Morocco Standard Time (Africa/El_Aaiun)' },
|
|
531
|
-
{ code: 'America/Boise', name: 'Mountain Standard Time (America/Boise)' },
|
|
532
|
-
{
|
|
533
|
-
code: 'America/Cambridge_Bay',
|
|
534
|
-
name: 'Mountain Standard Time (America/Cambridge_Bay)'
|
|
535
|
-
},
|
|
536
|
-
{ code: 'America/Denver', name: 'Mountain Standard Time (America/Denver)' },
|
|
537
|
-
{
|
|
538
|
-
code: 'America/Edmonton',
|
|
539
|
-
name: 'Mountain Standard Time (America/Edmonton)'
|
|
540
|
-
},
|
|
541
|
-
{ code: 'America/Inuvik', name: 'Mountain Standard Time (America/Inuvik)' },
|
|
542
|
-
{ code: 'America/Ojinaga', name: 'Mountain Standard Time (America/Ojinaga)' },
|
|
543
|
-
{
|
|
544
|
-
code: 'America/Shiprock',
|
|
545
|
-
name: 'Mountain Standard Time (America/Shiprock)'
|
|
546
|
-
},
|
|
547
|
-
{
|
|
548
|
-
code: 'America/Yellowknife',
|
|
549
|
-
name: 'Mountain Standard Time (America/Yellowknife)'
|
|
550
|
-
},
|
|
551
|
-
{ code: 'MST7MDT', name: 'Mountain Standard Time (MST7MDT)' },
|
|
552
|
-
{
|
|
553
|
-
code: 'America/Chihuahua',
|
|
554
|
-
name: 'Mountain Standard Time (Mexico) (America/Chihuahua)'
|
|
555
|
-
},
|
|
556
|
-
{
|
|
557
|
-
code: 'America/Mazatlan',
|
|
558
|
-
name: 'Mountain Standard Time (Mexico) (America/Mazatlan)'
|
|
559
|
-
},
|
|
560
|
-
{ code: 'Asia/Rangoon', name: 'Myanmar Standard Time (Asia/Rangoon)' },
|
|
561
|
-
{ code: 'Indian/Cocos', name: 'Myanmar Standard Time (Indian/Cocos)' },
|
|
562
|
-
{
|
|
563
|
-
code: 'Asia/Novokuznetsk',
|
|
564
|
-
name: 'N. Central Asia Standard Time (Asia/Novokuznetsk)'
|
|
565
|
-
},
|
|
566
|
-
{
|
|
567
|
-
code: 'Asia/Novosibirsk',
|
|
568
|
-
name: 'N. Central Asia Standard Time (Asia/Novosibirsk)'
|
|
569
|
-
},
|
|
570
|
-
{ code: 'Asia/Omsk', name: 'N. Central Asia Standard Time (Asia/Omsk)' },
|
|
571
|
-
{ code: 'Africa/Windhoek', name: 'Namibia Standard Time (Africa/Windhoek)' },
|
|
572
|
-
{ code: 'Asia/Katmandu', name: 'Nepal Standard Time (Asia/Katmandu)' },
|
|
573
|
-
{
|
|
574
|
-
code: 'Antarctica/McMurdo',
|
|
575
|
-
name: 'New Zealand Standard Time (Antarctica/McMurdo)'
|
|
576
|
-
},
|
|
577
|
-
{
|
|
578
|
-
code: 'Antarctica/South_Pole',
|
|
579
|
-
name: 'New Zealand Standard Time (Antarctica/South_Pole)'
|
|
580
|
-
},
|
|
581
|
-
{
|
|
582
|
-
code: 'Pacific/Auckland',
|
|
583
|
-
name: 'New Zealand Standard Time (Pacific/Auckland)'
|
|
584
|
-
},
|
|
585
|
-
{
|
|
586
|
-
code: 'America/St_Johns',
|
|
587
|
-
name: 'Newfoundland Standard Time (America/St_Johns)'
|
|
588
|
-
},
|
|
589
|
-
{
|
|
590
|
-
code: 'Asia/Irkutsk',
|
|
591
|
-
name: 'North Asia East Standard Time (Asia/Irkutsk)'
|
|
592
|
-
},
|
|
593
|
-
{
|
|
594
|
-
code: 'Asia/Krasnoyarsk',
|
|
595
|
-
name: 'North Asia Standard Time (Asia/Krasnoyarsk)'
|
|
596
|
-
},
|
|
597
|
-
{
|
|
598
|
-
code: 'America/Santiago',
|
|
599
|
-
name: 'Pacific SA Standard Time (America/Santiago)'
|
|
600
|
-
},
|
|
601
|
-
{
|
|
602
|
-
code: 'Antarctica/Palmer',
|
|
603
|
-
name: 'Pacific SA Standard Time (Antarctica/Palmer)'
|
|
604
|
-
},
|
|
605
|
-
{ code: 'America/Dawson', name: 'Pacific Standard Time (America/Dawson)' },
|
|
606
|
-
{
|
|
607
|
-
code: 'America/Los_Angeles',
|
|
608
|
-
name: 'Pacific Standard Time (America/Los_Angeles)'
|
|
609
|
-
},
|
|
610
|
-
{ code: 'America/Tijuana', name: 'Pacific Standard Time (America/Tijuana)' },
|
|
611
|
-
{
|
|
612
|
-
code: 'America/Vancouver',
|
|
613
|
-
name: 'Pacific Standard Time (America/Vancouver)'
|
|
614
|
-
},
|
|
615
|
-
{
|
|
616
|
-
code: 'America/Whitehorse',
|
|
617
|
-
name: 'Pacific Standard Time (America/Whitehorse)'
|
|
618
|
-
},
|
|
619
|
-
{
|
|
620
|
-
code: 'America/Santa_Isabel',
|
|
621
|
-
name: 'Pacific Standard Time (Mexico) (America/Santa_Isabel)'
|
|
622
|
-
},
|
|
623
|
-
{ code: 'PST8PDT', name: 'Pacific Standard Time (PST8PDT)' },
|
|
624
|
-
{ code: 'Asia/Karachi', name: 'Pakistan Standard Time (Asia/Karachi)' },
|
|
625
|
-
{
|
|
626
|
-
code: 'America/Asuncion',
|
|
627
|
-
name: 'Paraguay Standard Time (America/Asuncion)'
|
|
628
|
-
},
|
|
629
|
-
{ code: 'Africa/Ceuta', name: 'Romance Standard Time (Africa/Ceuta)' },
|
|
630
|
-
{ code: 'Europe/Brussels', name: 'Romance Standard Time (Europe/Brussels)' },
|
|
631
|
-
{
|
|
632
|
-
code: 'Europe/Copenhagen',
|
|
633
|
-
name: 'Romance Standard Time (Europe/Copenhagen)'
|
|
634
|
-
},
|
|
635
|
-
{ code: 'Europe/Madrid', name: 'Romance Standard Time (Europe/Madrid)' },
|
|
636
|
-
{ code: 'Europe/Paris', name: 'Romance Standard Time (Europe/Paris)' },
|
|
637
|
-
{ code: 'Europe/Moscow', name: 'Russian Standard Time (Europe/Moscow)' },
|
|
638
|
-
{ code: 'Europe/Samara', name: 'Russian Standard Time (Europe/Samara)' },
|
|
639
|
-
{
|
|
640
|
-
code: 'Europe/Volgograd',
|
|
641
|
-
name: 'Russian Standard Time (Europe/Volgograd)'
|
|
642
|
-
},
|
|
643
|
-
{
|
|
644
|
-
code: 'America/Araguaina',
|
|
645
|
-
name: 'SA Eastern Standard Time (America/Araguaina)'
|
|
646
|
-
},
|
|
647
|
-
{ code: 'America/Belem', name: 'SA Eastern Standard Time (America/Belem)' },
|
|
648
|
-
{
|
|
649
|
-
code: 'America/Cayenne',
|
|
650
|
-
name: 'SA Eastern Standard Time (America/Cayenne)'
|
|
651
|
-
},
|
|
652
|
-
{
|
|
653
|
-
code: 'America/Fortaleza',
|
|
654
|
-
name: 'SA Eastern Standard Time (America/Fortaleza)'
|
|
655
|
-
},
|
|
656
|
-
{ code: 'America/Maceio', name: 'SA Eastern Standard Time (America/Maceio)' },
|
|
657
|
-
{
|
|
658
|
-
code: 'America/Paramaribo',
|
|
659
|
-
name: 'SA Eastern Standard Time (America/Paramaribo)'
|
|
660
|
-
},
|
|
661
|
-
{ code: 'America/Recife', name: 'SA Eastern Standard Time (America/Recife)' },
|
|
662
|
-
{
|
|
663
|
-
code: 'America/Santarem',
|
|
664
|
-
name: 'SA Eastern Standard Time (America/Santarem)'
|
|
665
|
-
},
|
|
666
|
-
{
|
|
667
|
-
code: 'Antarctica/Rothera',
|
|
668
|
-
name: 'SA Eastern Standard Time (Antarctica/Rothera)'
|
|
669
|
-
},
|
|
670
|
-
{
|
|
671
|
-
code: 'Atlantic/Stanley',
|
|
672
|
-
name: 'SA Eastern Standard Time (Atlantic/Stanley)'
|
|
673
|
-
},
|
|
674
|
-
{ code: 'Etc/GMT+3', name: 'SA Eastern Standard Time (Etc/GMT+3)' },
|
|
675
|
-
{ code: 'America/Bogota', name: 'SA Pacific Standard Time (America/Bogota)' },
|
|
676
|
-
{ code: 'America/Cayman', name: 'SA Pacific Standard Time (America/Cayman)' },
|
|
677
|
-
{
|
|
678
|
-
code: 'America/Coral_Harbour',
|
|
679
|
-
name: 'SA Pacific Standard Time (America/Coral_Harbour)'
|
|
680
|
-
},
|
|
681
|
-
{
|
|
682
|
-
code: 'America/Eirunepe',
|
|
683
|
-
name: 'SA Pacific Standard Time (America/Eirunepe)'
|
|
684
|
-
},
|
|
685
|
-
{
|
|
686
|
-
code: 'America/Guayaquil',
|
|
687
|
-
name: 'SA Pacific Standard Time (America/Guayaquil)'
|
|
688
|
-
},
|
|
689
|
-
{
|
|
690
|
-
code: 'America/Jamaica',
|
|
691
|
-
name: 'SA Pacific Standard Time (America/Jamaica)'
|
|
692
|
-
},
|
|
693
|
-
{ code: 'America/Lima', name: 'SA Pacific Standard Time (America/Lima)' },
|
|
694
|
-
{ code: 'America/Panama', name: 'SA Pacific Standard Time (America/Panama)' },
|
|
695
|
-
{
|
|
696
|
-
code: 'America/Rio_Branco',
|
|
697
|
-
name: 'SA Pacific Standard Time (America/Rio_Branco)'
|
|
698
|
-
},
|
|
699
|
-
{ code: 'Etc/GMT+5', name: 'SA Pacific Standard Time (Etc/GMT+5)' },
|
|
700
|
-
{
|
|
701
|
-
code: 'America/Anguilla',
|
|
702
|
-
name: 'SA Western Standard Time (America/Anguilla)'
|
|
703
|
-
},
|
|
704
|
-
{
|
|
705
|
-
code: 'America/Antigua',
|
|
706
|
-
name: 'SA Western Standard Time (America/Antigua)'
|
|
707
|
-
},
|
|
708
|
-
{ code: 'America/Aruba', name: 'SA Western Standard Time (America/Aruba)' },
|
|
709
|
-
{
|
|
710
|
-
code: 'America/Barbados',
|
|
711
|
-
name: 'SA Western Standard Time (America/Barbados)'
|
|
712
|
-
},
|
|
713
|
-
{
|
|
714
|
-
code: 'America/Blanc-Sablon',
|
|
715
|
-
name: 'SA Western Standard Time (America/Blanc-Sablon)'
|
|
716
|
-
},
|
|
717
|
-
{
|
|
718
|
-
code: 'America/Boa_Vista',
|
|
719
|
-
name: 'SA Western Standard Time (America/Boa_Vista)'
|
|
720
|
-
},
|
|
721
|
-
{
|
|
722
|
-
code: 'America/Curacao',
|
|
723
|
-
name: 'SA Western Standard Time (America/Curacao)'
|
|
724
|
-
},
|
|
725
|
-
{
|
|
726
|
-
code: 'America/Dominica',
|
|
727
|
-
name: 'SA Western Standard Time (America/Dominica)'
|
|
728
|
-
},
|
|
729
|
-
{
|
|
730
|
-
code: 'America/Grenada',
|
|
731
|
-
name: 'SA Western Standard Time (America/Grenada)'
|
|
732
|
-
},
|
|
733
|
-
{
|
|
734
|
-
code: 'America/Guadeloupe',
|
|
735
|
-
name: 'SA Western Standard Time (America/Guadeloupe)'
|
|
736
|
-
},
|
|
737
|
-
{ code: 'America/Guyana', name: 'SA Western Standard Time (America/Guyana)' },
|
|
738
|
-
{
|
|
739
|
-
code: 'America/Kralendijk',
|
|
740
|
-
name: 'SA Western Standard Time (America/Kralendijk)'
|
|
741
|
-
},
|
|
742
|
-
{ code: 'America/La_Paz', name: 'SA Western Standard Time (America/La_Paz)' },
|
|
743
|
-
{
|
|
744
|
-
code: 'America/Lower_Princes',
|
|
745
|
-
name: 'SA Western Standard Time (America/Lower_Princes)'
|
|
746
|
-
},
|
|
747
|
-
{ code: 'America/Manaus', name: 'SA Western Standard Time (America/Manaus)' },
|
|
748
|
-
{
|
|
749
|
-
code: 'America/Marigot',
|
|
750
|
-
name: 'SA Western Standard Time (America/Marigot)'
|
|
751
|
-
},
|
|
752
|
-
{
|
|
753
|
-
code: 'America/Martinique',
|
|
754
|
-
name: 'SA Western Standard Time (America/Martinique)'
|
|
755
|
-
},
|
|
756
|
-
{
|
|
757
|
-
code: 'America/Montserrat',
|
|
758
|
-
name: 'SA Western Standard Time (America/Montserrat)'
|
|
759
|
-
},
|
|
760
|
-
{
|
|
761
|
-
code: 'America/Port_of_Spain',
|
|
762
|
-
name: 'SA Western Standard Time (America/Port_of_Spain)'
|
|
763
|
-
},
|
|
764
|
-
{
|
|
765
|
-
code: 'America/Porto_Velho',
|
|
766
|
-
name: 'SA Western Standard Time (America/Porto_Velho)'
|
|
767
|
-
},
|
|
768
|
-
{
|
|
769
|
-
code: 'America/Puerto_Rico',
|
|
770
|
-
name: 'SA Western Standard Time (America/Puerto_Rico)'
|
|
771
|
-
},
|
|
772
|
-
{
|
|
773
|
-
code: 'America/Santo_Domingo',
|
|
774
|
-
name: 'SA Western Standard Time (America/Santo_Domingo)'
|
|
775
|
-
},
|
|
776
|
-
{
|
|
777
|
-
code: 'America/St_Barthelemy',
|
|
778
|
-
name: 'SA Western Standard Time (America/St_Barthelemy)'
|
|
779
|
-
},
|
|
780
|
-
{
|
|
781
|
-
code: 'America/St_Kitts',
|
|
782
|
-
name: 'SA Western Standard Time (America/St_Kitts)'
|
|
783
|
-
},
|
|
784
|
-
{
|
|
785
|
-
code: 'America/St_Lucia',
|
|
786
|
-
name: 'SA Western Standard Time (America/St_Lucia)'
|
|
787
|
-
},
|
|
788
|
-
{
|
|
789
|
-
code: 'America/St_Thomas',
|
|
790
|
-
name: 'SA Western Standard Time (America/St_Thomas)'
|
|
791
|
-
},
|
|
792
|
-
{
|
|
793
|
-
code: 'America/St_Vincent',
|
|
794
|
-
name: 'SA Western Standard Time (America/St_Vincent)'
|
|
795
|
-
},
|
|
796
|
-
{
|
|
797
|
-
code: 'America/Tortola',
|
|
798
|
-
name: 'SA Western Standard Time (America/Tortola)'
|
|
799
|
-
},
|
|
800
|
-
{ code: 'Etc/GMT+4', name: 'SA Western Standard Time (Etc/GMT+4)' },
|
|
801
|
-
{
|
|
802
|
-
code: 'Antarctica/Davis',
|
|
803
|
-
name: 'SE Asia Standard Time (Antarctica/Davis)'
|
|
804
|
-
},
|
|
805
|
-
{ code: 'Asia/Bangkok', name: 'SE Asia Standard Time (Asia/Bangkok)' },
|
|
806
|
-
{ code: 'Asia/Hovd', name: 'SE Asia Standard Time (Asia/Hovd)' },
|
|
807
|
-
{ code: 'Asia/Jakarta', name: 'SE Asia Standard Time (Asia/Jakarta)' },
|
|
808
|
-
{ code: 'Asia/Phnom_Penh', name: 'SE Asia Standard Time (Asia/Phnom_Penh)' },
|
|
809
|
-
{ code: 'Asia/Pontianak', name: 'SE Asia Standard Time (Asia/Pontianak)' },
|
|
810
|
-
{ code: 'Asia/Saigon', name: 'SE Asia Standard Time (Asia/Saigon)' },
|
|
811
|
-
{ code: 'Asia/Vientiane', name: 'SE Asia Standard Time (Asia/Vientiane)' },
|
|
812
|
-
{ code: 'Etc/GMT-7', name: 'SE Asia Standard Time (Etc/GMT-7)' },
|
|
813
|
-
{
|
|
814
|
-
code: 'Indian/Christmas',
|
|
815
|
-
name: 'SE Asia Standard Time (Indian/Christmas)'
|
|
816
|
-
},
|
|
817
|
-
{ code: 'Pacific/Apia', name: 'Samoa Standard Time (Pacific/Apia)' },
|
|
818
|
-
{ code: 'Asia/Brunei', name: 'Singapore Standard Time (Asia/Brunei)' },
|
|
819
|
-
{
|
|
820
|
-
code: 'Asia/Kuala_Lumpur',
|
|
821
|
-
name: 'Singapore Standard Time (Asia/Kuala_Lumpur)'
|
|
822
|
-
},
|
|
823
|
-
{ code: 'Asia/Kuching', name: 'Singapore Standard Time (Asia/Kuching)' },
|
|
824
|
-
{ code: 'Asia/Makassar', name: 'Singapore Standard Time (Asia/Makassar)' },
|
|
825
|
-
{ code: 'Asia/Manila', name: 'Singapore Standard Time (Asia/Manila)' },
|
|
826
|
-
{ code: 'Asia/Singapore', name: 'Singapore Standard Time (Asia/Singapore)' },
|
|
827
|
-
{ code: 'Etc/GMT-8', name: 'Singapore Standard Time (Etc/GMT-8)' },
|
|
828
|
-
{
|
|
829
|
-
code: 'Africa/Blantyre',
|
|
830
|
-
name: 'South Africa Standard Time (Africa/Blantyre)'
|
|
831
|
-
},
|
|
832
|
-
{
|
|
833
|
-
code: 'Africa/Bujumbura',
|
|
834
|
-
name: 'South Africa Standard Time (Africa/Bujumbura)'
|
|
835
|
-
},
|
|
836
|
-
{
|
|
837
|
-
code: 'Africa/Gaborone',
|
|
838
|
-
name: 'South Africa Standard Time (Africa/Gaborone)'
|
|
839
|
-
},
|
|
840
|
-
{ code: 'Africa/Harare', name: 'South Africa Standard Time (Africa/Harare)' },
|
|
841
|
-
{
|
|
842
|
-
code: 'Africa/Johannesburg',
|
|
843
|
-
name: 'South Africa Standard Time (Africa/Johannesburg)'
|
|
844
|
-
},
|
|
845
|
-
{ code: 'Africa/Kigali', name: 'South Africa Standard Time (Africa/Kigali)' },
|
|
846
|
-
{
|
|
847
|
-
code: 'Africa/Lubumbashi',
|
|
848
|
-
name: 'South Africa Standard Time (Africa/Lubumbashi)'
|
|
849
|
-
},
|
|
850
|
-
{ code: 'Africa/Lusaka', name: 'South Africa Standard Time (Africa/Lusaka)' },
|
|
851
|
-
{ code: 'Africa/Maputo', name: 'South Africa Standard Time (Africa/Maputo)' },
|
|
852
|
-
{ code: 'Africa/Maseru', name: 'South Africa Standard Time (Africa/Maseru)' },
|
|
853
|
-
{
|
|
854
|
-
code: 'Africa/Mbabane',
|
|
855
|
-
name: 'South Africa Standard Time (Africa/Mbabane)'
|
|
856
|
-
},
|
|
857
|
-
{ code: 'Etc/GMT-2', name: 'South Africa Standard Time (Etc/GMT-2)' },
|
|
858
|
-
{ code: 'Asia/Colombo', name: 'Sri Lanka Standard Time (Asia/Colombo)' },
|
|
859
|
-
{ code: 'Asia/Damascus', name: 'Syria Standard Time (Asia/Damascus)' },
|
|
860
|
-
{ code: 'Asia/Taipei', name: 'Taipei Standard Time (Asia/Taipei)' },
|
|
861
|
-
{
|
|
862
|
-
code: 'Australia/Currie',
|
|
863
|
-
name: 'Tasmania Standard Time (Australia/Currie)'
|
|
864
|
-
},
|
|
865
|
-
{
|
|
866
|
-
code: 'Australia/Hobart',
|
|
867
|
-
name: 'Tasmania Standard Time (Australia/Hobart)'
|
|
868
|
-
},
|
|
869
|
-
{ code: 'Asia/Dili', name: 'Tokyo Standard Time (Asia/Dili)' },
|
|
870
|
-
{ code: 'Asia/Jayapura', name: 'Tokyo Standard Time (Asia/Jayapura)' },
|
|
871
|
-
{ code: 'Asia/Tokyo', name: 'Tokyo Standard Time (Asia/Tokyo)' },
|
|
872
|
-
{ code: 'Etc/GMT-9', name: 'Tokyo Standard Time (Etc/GMT-9)' },
|
|
873
|
-
{ code: 'Pacific/Palau', name: 'Tokyo Standard Time (Pacific/Palau)' },
|
|
874
|
-
{ code: 'Etc/GMT-13', name: 'Tonga Standard Time (Etc/GMT-13)' },
|
|
875
|
-
{
|
|
876
|
-
code: 'Pacific/Enderbury',
|
|
877
|
-
name: 'Tonga Standard Time (Pacific/Enderbury)'
|
|
878
|
-
},
|
|
879
|
-
{ code: 'Pacific/Fakaofo', name: 'Tonga Standard Time (Pacific/Fakaofo)' },
|
|
880
|
-
{
|
|
881
|
-
code: 'Pacific/Tongatapu',
|
|
882
|
-
name: 'Tonga Standard Time (Pacific/Tongatapu)'
|
|
883
|
-
},
|
|
884
|
-
{ code: 'Europe/Istanbul', name: 'Turkey Standard Time (Europe/Istanbul)' },
|
|
885
|
-
{
|
|
886
|
-
code: 'America/Indiana/Marengo',
|
|
887
|
-
name: 'US Eastern Standard Time (America/Indiana/Marengo)'
|
|
888
|
-
},
|
|
889
|
-
{
|
|
890
|
-
code: 'America/Indiana/Vevay',
|
|
891
|
-
name: 'US Eastern Standard Time (America/Indiana/Vevay)'
|
|
892
|
-
},
|
|
893
|
-
{
|
|
894
|
-
code: 'America/Indianapolis',
|
|
895
|
-
name: 'US Eastern Standard Time (America/Indianapolis)'
|
|
896
|
-
},
|
|
897
|
-
{
|
|
898
|
-
code: 'America/Creston',
|
|
899
|
-
name: 'US Mountain Standard Time (America/Creston)'
|
|
900
|
-
},
|
|
901
|
-
{
|
|
902
|
-
code: 'America/Dawson_Creek',
|
|
903
|
-
name: 'US Mountain Standard Time (America/Dawson_Creek)'
|
|
904
|
-
},
|
|
905
|
-
{
|
|
906
|
-
code: 'America/Hermosillo',
|
|
907
|
-
name: 'US Mountain Standard Time (America/Hermosillo)'
|
|
908
|
-
},
|
|
909
|
-
{
|
|
910
|
-
code: 'America/Phoenix',
|
|
911
|
-
name: 'US Mountain Standard Time (America/Phoenix)'
|
|
912
|
-
},
|
|
913
|
-
{ code: 'Etc/GMT+7', name: 'US Mountain Standard Time (Etc/GMT+7)' },
|
|
914
|
-
{ code: 'America/Danmarkshavn', name: 'UTC (America/Danmarkshavn)' },
|
|
915
|
-
{ code: 'Etc/GMT', name: 'UTC (Etc/GMT)' },
|
|
916
|
-
{ code: 'Etc/GMT-12', name: 'UTC+12 (Etc/GMT-12)' },
|
|
917
|
-
{ code: 'Pacific/Funafuti', name: 'UTC+12 (Pacific/Funafuti)' },
|
|
918
|
-
{ code: 'Pacific/Kwajalein', name: 'UTC+12 (Pacific/Kwajalein)' },
|
|
919
|
-
{ code: 'Pacific/Majuro', name: 'UTC+12 (Pacific/Majuro)' },
|
|
920
|
-
{ code: 'Pacific/Nauru', name: 'UTC+12 (Pacific/Nauru)' },
|
|
921
|
-
{ code: 'Pacific/Tarawa', name: 'UTC+12 (Pacific/Tarawa)' },
|
|
922
|
-
{ code: 'Pacific/Wake', name: 'UTC+12 (Pacific/Wake)' },
|
|
923
|
-
{ code: 'Pacific/Wallis', name: 'UTC+12 (Pacific/Wallis)' },
|
|
924
|
-
{ code: 'America/Noronha', name: 'UTC-02 (America/Noronha)' },
|
|
925
|
-
{ code: 'Atlantic/South_Georgia', name: 'UTC-02 (Atlantic/South_Georgia)' },
|
|
926
|
-
{ code: 'Etc/GMT+2', name: 'UTC-02 (Etc/GMT+2)' },
|
|
927
|
-
{ code: 'Etc/GMT+11', name: 'UTC-11 (Etc/GMT+11)' },
|
|
928
|
-
{ code: 'Pacific/Midway', name: 'UTC-11 (Pacific/Midway)' },
|
|
929
|
-
{ code: 'Pacific/Niue', name: 'UTC-11 (Pacific/Niue)' },
|
|
930
|
-
{ code: 'Pacific/Pago_Pago', name: 'UTC-11 (Pacific/Pago_Pago)' },
|
|
931
|
-
{
|
|
932
|
-
code: 'Asia/Choibalsan',
|
|
933
|
-
name: 'Ulaanbaatar Standard Time (Asia/Choibalsan)'
|
|
934
|
-
},
|
|
935
|
-
{
|
|
936
|
-
code: 'Asia/Ulaanbaatar',
|
|
937
|
-
name: 'Ulaanbaatar Standard Time (Asia/Ulaanbaatar)'
|
|
938
|
-
},
|
|
939
|
-
{
|
|
940
|
-
code: 'America/Caracas',
|
|
941
|
-
name: 'Venezuela Standard Time (America/Caracas)'
|
|
942
|
-
},
|
|
943
|
-
{ code: 'Asia/Sakhalin', name: 'Vladivostok Standard Time (Asia/Sakhalin)' },
|
|
944
|
-
{ code: 'Asia/Ust-Nera', name: 'Vladivostok Standard Time (Asia/Ust-Nera)' },
|
|
945
|
-
{
|
|
946
|
-
code: 'Asia/Vladivostok',
|
|
947
|
-
name: 'Vladivostok Standard Time (Asia/Vladivostok)'
|
|
948
|
-
},
|
|
949
|
-
{
|
|
950
|
-
code: 'Antarctica/Casey',
|
|
951
|
-
name: 'W. Australia Standard Time (Antarctica/Casey)'
|
|
952
|
-
},
|
|
953
|
-
{
|
|
954
|
-
code: 'Australia/Perth',
|
|
955
|
-
name: 'W. Australia Standard Time (Australia/Perth)'
|
|
956
|
-
},
|
|
957
|
-
{
|
|
958
|
-
code: 'Africa/Algiers',
|
|
959
|
-
name: 'W. Central Africa Standard Time (Africa/Algiers)'
|
|
960
|
-
},
|
|
961
|
-
{
|
|
962
|
-
code: 'Africa/Bangui',
|
|
963
|
-
name: 'W. Central Africa Standard Time (Africa/Bangui)'
|
|
964
|
-
},
|
|
965
|
-
{
|
|
966
|
-
code: 'Africa/Brazzaville',
|
|
967
|
-
name: 'W. Central Africa Standard Time (Africa/Brazzaville)'
|
|
968
|
-
},
|
|
969
|
-
{
|
|
970
|
-
code: 'Africa/Douala',
|
|
971
|
-
name: 'W. Central Africa Standard Time (Africa/Douala)'
|
|
972
|
-
},
|
|
973
|
-
{
|
|
974
|
-
code: 'Africa/Kinshasa',
|
|
975
|
-
name: 'W. Central Africa Standard Time (Africa/Kinshasa)'
|
|
976
|
-
},
|
|
977
|
-
{
|
|
978
|
-
code: 'Africa/Lagos',
|
|
979
|
-
name: 'W. Central Africa Standard Time (Africa/Lagos)'
|
|
980
|
-
},
|
|
981
|
-
{
|
|
982
|
-
code: 'Africa/Libreville',
|
|
983
|
-
name: 'W. Central Africa Standard Time (Africa/Libreville)'
|
|
984
|
-
},
|
|
985
|
-
{
|
|
986
|
-
code: 'Africa/Luanda',
|
|
987
|
-
name: 'W. Central Africa Standard Time (Africa/Luanda)'
|
|
988
|
-
},
|
|
989
|
-
{
|
|
990
|
-
code: 'Africa/Malabo',
|
|
991
|
-
name: 'W. Central Africa Standard Time (Africa/Malabo)'
|
|
992
|
-
},
|
|
993
|
-
{
|
|
994
|
-
code: 'Africa/Ndjamena',
|
|
995
|
-
name: 'W. Central Africa Standard Time (Africa/Ndjamena)'
|
|
996
|
-
},
|
|
997
|
-
{
|
|
998
|
-
code: 'Africa/Niamey',
|
|
999
|
-
name: 'W. Central Africa Standard Time (Africa/Niamey)'
|
|
1000
|
-
},
|
|
1001
|
-
{
|
|
1002
|
-
code: 'Africa/Porto-Novo',
|
|
1003
|
-
name: 'W. Central Africa Standard Time (Africa/Porto-Novo)'
|
|
1004
|
-
},
|
|
1005
|
-
{
|
|
1006
|
-
code: 'Africa/Tunis',
|
|
1007
|
-
name: 'W. Central Africa Standard Time (Africa/Tunis)'
|
|
1008
|
-
},
|
|
1009
|
-
{ code: 'Etc/GMT-1', name: 'W. Central Africa Standard Time (Etc/GMT-1)' },
|
|
1010
|
-
{
|
|
1011
|
-
code: 'Arctic/Longyearbyen',
|
|
1012
|
-
name: 'W. Europe Standard Time (Arctic/Longyearbyen)'
|
|
1013
|
-
},
|
|
1014
|
-
{
|
|
1015
|
-
code: 'Europe/Amsterdam',
|
|
1016
|
-
name: 'W. Europe Standard Time (Europe/Amsterdam)'
|
|
1017
|
-
},
|
|
1018
|
-
{ code: 'Europe/Andorra', name: 'W. Europe Standard Time (Europe/Andorra)' },
|
|
1019
|
-
{ code: 'Europe/Berlin', name: 'W. Europe Standard Time (Europe/Berlin)' },
|
|
1020
|
-
{
|
|
1021
|
-
code: 'Europe/Busingen',
|
|
1022
|
-
name: 'W. Europe Standard Time (Europe/Busingen)'
|
|
1023
|
-
},
|
|
1024
|
-
{
|
|
1025
|
-
code: 'Europe/Gibraltar',
|
|
1026
|
-
name: 'W. Europe Standard Time (Europe/Gibraltar)'
|
|
1027
|
-
},
|
|
1028
|
-
{
|
|
1029
|
-
code: 'Europe/Luxembourg',
|
|
1030
|
-
name: 'W. Europe Standard Time (Europe/Luxembourg)'
|
|
1031
|
-
},
|
|
1032
|
-
{ code: 'Europe/Malta', name: 'W. Europe Standard Time (Europe/Malta)' },
|
|
1033
|
-
{ code: 'Europe/Monaco', name: 'W. Europe Standard Time (Europe/Monaco)' },
|
|
1034
|
-
{ code: 'Europe/Oslo', name: 'W. Europe Standard Time (Europe/Oslo)' },
|
|
1035
|
-
{ code: 'Europe/Rome', name: 'W. Europe Standard Time (Europe/Rome)' },
|
|
1036
|
-
{
|
|
1037
|
-
code: 'Europe/San_Marino',
|
|
1038
|
-
name: 'W. Europe Standard Time (Europe/San_Marino)'
|
|
1039
|
-
},
|
|
1040
|
-
{
|
|
1041
|
-
code: 'Europe/Stockholm',
|
|
1042
|
-
name: 'W. Europe Standard Time (Europe/Stockholm)'
|
|
1043
|
-
},
|
|
1044
|
-
{ code: 'Europe/Vaduz', name: 'W. Europe Standard Time (Europe/Vaduz)' },
|
|
1045
|
-
{ code: 'Europe/Vatican', name: 'W. Europe Standard Time (Europe/Vatican)' },
|
|
1046
|
-
{ code: 'Europe/Vienna', name: 'W. Europe Standard Time (Europe/Vienna)' },
|
|
1047
|
-
{ code: 'Europe/Zurich', name: 'W. Europe Standard Time (Europe/Zurich)' },
|
|
1048
|
-
{
|
|
1049
|
-
code: 'Antarctica/Mawson',
|
|
1050
|
-
name: 'West Asia Standard Time (Antarctica/Mawson)'
|
|
1051
|
-
},
|
|
1052
|
-
{ code: 'Asia/Aqtau', name: 'West Asia Standard Time (Asia/Aqtau)' },
|
|
1053
|
-
{ code: 'Asia/Aqtobe', name: 'West Asia Standard Time (Asia/Aqtobe)' },
|
|
1054
|
-
{ code: 'Asia/Ashgabat', name: 'West Asia Standard Time (Asia/Ashgabat)' },
|
|
1055
|
-
{ code: 'Asia/Dushanbe', name: 'West Asia Standard Time (Asia/Dushanbe)' },
|
|
1056
|
-
{ code: 'Asia/Oral', name: 'West Asia Standard Time (Asia/Oral)' },
|
|
1057
|
-
{ code: 'Asia/Samarkand', name: 'West Asia Standard Time (Asia/Samarkand)' },
|
|
1058
|
-
{ code: 'Asia/Tashkent', name: 'West Asia Standard Time (Asia/Tashkent)' },
|
|
1059
|
-
{ code: 'Etc/GMT-5', name: 'West Asia Standard Time (Etc/GMT-5)' },
|
|
1060
|
-
{
|
|
1061
|
-
code: 'Indian/Kerguelen',
|
|
1062
|
-
name: 'West Asia Standard Time (Indian/Kerguelen)'
|
|
1063
|
-
},
|
|
1064
|
-
{
|
|
1065
|
-
code: 'Indian/Maldives',
|
|
1066
|
-
name: 'West Asia Standard Time (Indian/Maldives)'
|
|
1067
|
-
},
|
|
1068
|
-
{
|
|
1069
|
-
code: 'Antarctica/DumontDUrville',
|
|
1070
|
-
name: 'West Pacific Standard Time (Antarctica/DumontDUrville)'
|
|
1071
|
-
},
|
|
1072
|
-
{ code: 'Etc/GMT-10', name: 'West Pacific Standard Time (Etc/GMT-10)' },
|
|
1073
|
-
{ code: 'Pacific/Guam', name: 'West Pacific Standard Time (Pacific/Guam)' },
|
|
1074
|
-
{
|
|
1075
|
-
code: 'Pacific/Port_Moresby',
|
|
1076
|
-
name: 'West Pacific Standard Time (Pacific/Port_Moresby)'
|
|
1077
|
-
},
|
|
1078
|
-
{
|
|
1079
|
-
code: 'Pacific/Saipan',
|
|
1080
|
-
name: 'West Pacific Standard Time (Pacific/Saipan)'
|
|
1081
|
-
},
|
|
1082
|
-
{ code: 'Pacific/Truk', name: 'West Pacific Standard Time (Pacific/Truk)' },
|
|
1083
|
-
{ code: 'Asia/Khandyga', name: 'Yakutsk Standard Time (Asia/Khandyga)' },
|
|
1084
|
-
{ code: 'Asia/Yakutsk', name: 'Yakutsk Standard Time (Asia/Yakutsk)' }
|
|
1085
|
-
];
|
|
1
|
+
module.exports.timezones = [
|
|
2
|
+
{
|
|
3
|
+
code: 'Australia/Darwin',
|
|
4
|
+
name: 'AUS Central Standard Time (Australia/Darwin)'
|
|
5
|
+
},
|
|
6
|
+
{
|
|
7
|
+
code: 'Australia/Melbourne',
|
|
8
|
+
name: 'AUS Eastern Standard Time (Australia/Melbourne)'
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
code: 'Australia/Sydney',
|
|
12
|
+
name: 'AUS Eastern Standard Time (Australia/Sydney)'
|
|
13
|
+
},
|
|
14
|
+
{ code: 'Asia/Kabul', name: 'Afghanistan Standard Time (Asia/Kabul)' },
|
|
15
|
+
{
|
|
16
|
+
code: 'America/Anchorage',
|
|
17
|
+
name: 'Alaskan Standard Time (America/Anchorage)'
|
|
18
|
+
},
|
|
19
|
+
{ code: 'America/Juneau', name: 'Alaskan Standard Time (America/Juneau)' },
|
|
20
|
+
{ code: 'America/Nome', name: 'Alaskan Standard Time (America/Nome)' },
|
|
21
|
+
{ code: 'America/Sitka', name: 'Alaskan Standard Time (America/Sitka)' },
|
|
22
|
+
{ code: 'America/Yakutat', name: 'Alaskan Standard Time (America/Yakutat)' },
|
|
23
|
+
{ code: 'Asia/Aden', name: 'Arab Standard Time (Asia/Aden)' },
|
|
24
|
+
{ code: 'Asia/Bahrain', name: 'Arab Standard Time (Asia/Bahrain)' },
|
|
25
|
+
{ code: 'Asia/Kuwait', name: 'Arab Standard Time (Asia/Kuwait)' },
|
|
26
|
+
{ code: 'Asia/Qatar', name: 'Arab Standard Time (Asia/Qatar)' },
|
|
27
|
+
{ code: 'Asia/Riyadh', name: 'Arab Standard Time (Asia/Riyadh)' },
|
|
28
|
+
{ code: 'Asia/Dubai', name: 'Arabian Standard Time (Asia/Dubai)' },
|
|
29
|
+
{ code: 'Asia/Muscat', name: 'Arabian Standard Time (Asia/Muscat)' },
|
|
30
|
+
{ code: 'Etc/GMT-4', name: 'Arabian Standard Time (Etc/GMT-4)' },
|
|
31
|
+
{ code: 'Asia/Baghdad', name: 'Arabic Standard Time (Asia/Baghdad)' },
|
|
32
|
+
{
|
|
33
|
+
code: 'America/Argentina/La_Rioja',
|
|
34
|
+
name: 'Argentina Standard Time (America/Argentina/La_Rioja)'
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
code: 'America/Argentina/Rio_Gallegos',
|
|
38
|
+
name: 'Argentina Standard Time (America/Argentina/Rio_Gallegos)'
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
code: 'America/Argentina/Salta',
|
|
42
|
+
name: 'Argentina Standard Time (America/Argentina/Salta)'
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
code: 'America/Argentina/San_Juan',
|
|
46
|
+
name: 'Argentina Standard Time (America/Argentina/San_Juan)'
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
code: 'America/Argentina/San_Luis',
|
|
50
|
+
name: 'Argentina Standard Time (America/Argentina/San_Luis)'
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
code: 'America/Argentina/Tucuman',
|
|
54
|
+
name: 'Argentina Standard Time (America/Argentina/Tucuman)'
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
code: 'America/Argentina/Ushuaia',
|
|
58
|
+
name: 'Argentina Standard Time (America/Argentina/Ushuaia)'
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
code: 'America/Buenos_Aires',
|
|
62
|
+
name: 'Argentina Standard Time (America/Buenos_Aires)'
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
code: 'America/Catamarca',
|
|
66
|
+
name: 'Argentina Standard Time (America/Catamarca)'
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
code: 'America/Cordoba',
|
|
70
|
+
name: 'Argentina Standard Time (America/Cordoba)'
|
|
71
|
+
},
|
|
72
|
+
{ code: 'America/Jujuy', name: 'Argentina Standard Time (America/Jujuy)' },
|
|
73
|
+
{
|
|
74
|
+
code: 'America/Mendoza',
|
|
75
|
+
name: 'Argentina Standard Time (America/Mendoza)'
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
code: 'America/Glace_Bay',
|
|
79
|
+
name: 'Atlantic Standard Time (America/Glace_Bay)'
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
code: 'America/Goose_Bay',
|
|
83
|
+
name: 'Atlantic Standard Time (America/Goose_Bay)'
|
|
84
|
+
},
|
|
85
|
+
{ code: 'America/Halifax', name: 'Atlantic Standard Time (America/Halifax)' },
|
|
86
|
+
{ code: 'America/Moncton', name: 'Atlantic Standard Time (America/Moncton)' },
|
|
87
|
+
{ code: 'America/Thule', name: 'Atlantic Standard Time (America/Thule)' },
|
|
88
|
+
{
|
|
89
|
+
code: 'Atlantic/Bermuda',
|
|
90
|
+
name: 'Atlantic Standard Time (Atlantic/Bermuda)'
|
|
91
|
+
},
|
|
92
|
+
{ code: 'Asia/Baku', name: 'Azerbaijan Standard Time (Asia/Baku)' },
|
|
93
|
+
{
|
|
94
|
+
code: 'America/Scoresbysund',
|
|
95
|
+
name: 'Azores Standard Time (America/Scoresbysund)'
|
|
96
|
+
},
|
|
97
|
+
{ code: 'Atlantic/Azores', name: 'Azores Standard Time (Atlantic/Azores)' },
|
|
98
|
+
{ code: 'America/Bahia', name: 'Bahia Standard Time (America/Bahia)' },
|
|
99
|
+
{ code: 'Asia/Dhaka', name: 'Bangladesh Standard Time (Asia/Dhaka)' },
|
|
100
|
+
{ code: 'Asia/Thimphu', name: 'Bangladesh Standard Time (Asia/Thimphu)' },
|
|
101
|
+
{
|
|
102
|
+
code: 'America/Regina',
|
|
103
|
+
name: 'Canada Central Standard Time (America/Regina)'
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
code: 'America/Swift_Current',
|
|
107
|
+
name: 'Canada Central Standard Time (America/Swift_Current)'
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
code: 'Atlantic/Cape_Verde',
|
|
111
|
+
name: 'Cape Verde Standard Time (Atlantic/Cape_Verde)'
|
|
112
|
+
},
|
|
113
|
+
{ code: 'Etc/GMT+1', name: 'Cape Verde Standard Time (Etc/GMT+1)' },
|
|
114
|
+
{ code: 'Asia/Yerevan', name: 'Caucasus Standard Time (Asia/Yerevan)' },
|
|
115
|
+
{
|
|
116
|
+
code: 'Australia/Adelaide',
|
|
117
|
+
name: 'Cen. Australia Standard Time (Australia/Adelaide)'
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
code: 'Australia/Broken_Hill',
|
|
121
|
+
name: 'Cen. Australia Standard Time (Australia/Broken_Hill)'
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
code: 'America/Belize',
|
|
125
|
+
name: 'Central America Standard Time (America/Belize)'
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
code: 'America/Costa_Rica',
|
|
129
|
+
name: 'Central America Standard Time (America/Costa_Rica)'
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
code: 'America/El_Salvador',
|
|
133
|
+
name: 'Central America Standard Time (America/El_Salvador)'
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
code: 'America/Guatemala',
|
|
137
|
+
name: 'Central America Standard Time (America/Guatemala)'
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
code: 'America/Managua',
|
|
141
|
+
name: 'Central America Standard Time (America/Managua)'
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
code: 'America/Tegucigalpa',
|
|
145
|
+
name: 'Central America Standard Time (America/Tegucigalpa)'
|
|
146
|
+
},
|
|
147
|
+
{ code: 'Etc/GMT+6', name: 'Central America Standard Time (Etc/GMT+6)' },
|
|
148
|
+
{
|
|
149
|
+
code: 'Pacific/Galapagos',
|
|
150
|
+
name: 'Central America Standard Time (Pacific/Galapagos)'
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
code: 'Antarctica/Vostok',
|
|
154
|
+
name: 'Central Asia Standard Time (Antarctica/Vostok)'
|
|
155
|
+
},
|
|
156
|
+
{ code: 'Asia/Almaty', name: 'Central Asia Standard Time (Asia/Almaty)' },
|
|
157
|
+
{ code: 'Asia/Bishkek', name: 'Central Asia Standard Time (Asia/Bishkek)' },
|
|
158
|
+
{
|
|
159
|
+
code: 'Asia/Qyzylorda',
|
|
160
|
+
name: 'Central Asia Standard Time (Asia/Qyzylorda)'
|
|
161
|
+
},
|
|
162
|
+
{ code: 'Etc/GMT-6', name: 'Central Asia Standard Time (Etc/GMT-6)' },
|
|
163
|
+
{ code: 'Indian/Chagos', name: 'Central Asia Standard Time (Indian/Chagos)' },
|
|
164
|
+
{
|
|
165
|
+
code: 'America/Campo_Grande',
|
|
166
|
+
name: 'Central Brazilian Standard Time (America/Campo_Grande)'
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
code: 'America/Cuiaba',
|
|
170
|
+
name: 'Central Brazilian Standard Time (America/Cuiaba)'
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
code: 'Europe/Belgrade',
|
|
174
|
+
name: 'Central Europe Standard Time (Europe/Belgrade)'
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
code: 'Europe/Bratislava',
|
|
178
|
+
name: 'Central Europe Standard Time (Europe/Bratislava)'
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
code: 'Europe/Budapest',
|
|
182
|
+
name: 'Central Europe Standard Time (Europe/Budapest)'
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
code: 'Europe/Ljubljana',
|
|
186
|
+
name: 'Central Europe Standard Time (Europe/Ljubljana)'
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
code: 'Europe/Podgorica',
|
|
190
|
+
name: 'Central Europe Standard Time (Europe/Podgorica)'
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
code: 'Europe/Prague',
|
|
194
|
+
name: 'Central Europe Standard Time (Europe/Prague)'
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
code: 'Europe/Tirane',
|
|
198
|
+
name: 'Central Europe Standard Time (Europe/Tirane)'
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
code: 'Europe/Sarajevo',
|
|
202
|
+
name: 'Central European Standard Time (Europe/Sarajevo)'
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
code: 'Europe/Skopje',
|
|
206
|
+
name: 'Central European Standard Time (Europe/Skopje)'
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
code: 'Europe/Warsaw',
|
|
210
|
+
name: 'Central European Standard Time (Europe/Warsaw)'
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
code: 'Europe/Zagreb',
|
|
214
|
+
name: 'Central European Standard Time (Europe/Zagreb)'
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
code: 'Antarctica/Macquarie',
|
|
218
|
+
name: 'Central Pacific Standard Time (Antarctica/Macquarie)'
|
|
219
|
+
},
|
|
220
|
+
{ code: 'Etc/GMT-11', name: 'Central Pacific Standard Time (Etc/GMT-11)' },
|
|
221
|
+
{
|
|
222
|
+
code: 'Pacific/Efate',
|
|
223
|
+
name: 'Central Pacific Standard Time (Pacific/Efate)'
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
code: 'Pacific/Guadalcanal',
|
|
227
|
+
name: 'Central Pacific Standard Time (Pacific/Guadalcanal)'
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
code: 'Pacific/Kosrae',
|
|
231
|
+
name: 'Central Pacific Standard Time (Pacific/Kosrae)'
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
code: 'Pacific/Noumea',
|
|
235
|
+
name: 'Central Pacific Standard Time (Pacific/Noumea)'
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
code: 'Pacific/Ponape',
|
|
239
|
+
name: 'Central Pacific Standard Time (Pacific/Ponape)'
|
|
240
|
+
},
|
|
241
|
+
{ code: 'America/Chicago', name: 'Central Standard Time (America/Chicago)' },
|
|
242
|
+
{
|
|
243
|
+
code: 'America/Indiana/Knox',
|
|
244
|
+
name: 'Central Standard Time (America/Indiana/Knox)'
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
code: 'America/Indiana/Tell_City',
|
|
248
|
+
name: 'Central Standard Time (America/Indiana/Tell_City)'
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
code: 'America/Matamoros',
|
|
252
|
+
name: 'Central Standard Time (America/Matamoros)'
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
code: 'America/Menominee',
|
|
256
|
+
name: 'Central Standard Time (America/Menominee)'
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
code: 'America/North_Dakota/Beulah',
|
|
260
|
+
name: 'Central Standard Time (America/North_Dakota/Beulah)'
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
code: 'America/North_Dakota/Center',
|
|
264
|
+
name: 'Central Standard Time (America/North_Dakota/Center)'
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
code: 'America/North_Dakota/New_Salem',
|
|
268
|
+
name: 'Central Standard Time (America/North_Dakota/New_Salem)'
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
code: 'America/Rainy_River',
|
|
272
|
+
name: 'Central Standard Time (America/Rainy_River)'
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
code: 'America/Rankin_Inlet',
|
|
276
|
+
name: 'Central Standard Time (America/Rankin_Inlet)'
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
code: 'America/Resolute',
|
|
280
|
+
name: 'Central Standard Time (America/Resolute)'
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
code: 'America/Winnipeg',
|
|
284
|
+
name: 'Central Standard Time (America/Winnipeg)'
|
|
285
|
+
},
|
|
286
|
+
{ code: 'CST6CDT', name: 'Central Standard Time (CST6CDT)' },
|
|
287
|
+
{
|
|
288
|
+
code: 'America/Bahia_Banderas',
|
|
289
|
+
name: 'Central Standard Time (Mexico) (America/Bahia_Banderas)'
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
code: 'America/Cancun',
|
|
293
|
+
name: 'Central Standard Time (Mexico) (America/Cancun)'
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
code: 'America/Merida',
|
|
297
|
+
name: 'Central Standard Time (Mexico) (America/Merida)'
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
code: 'America/Mexico_City',
|
|
301
|
+
name: 'Central Standard Time (Mexico) (America/Mexico_City)'
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
code: 'America/Monterrey',
|
|
305
|
+
name: 'Central Standard Time (Mexico) (America/Monterrey)'
|
|
306
|
+
},
|
|
307
|
+
{ code: 'Asia/Chongqing', name: 'China Standard Time (Asia/Chongqing)' },
|
|
308
|
+
{ code: 'Asia/Harbin', name: 'China Standard Time (Asia/Harbin)' },
|
|
309
|
+
{ code: 'Asia/Hong_Kong', name: 'China Standard Time (Asia/Hong_Kong)' },
|
|
310
|
+
{ code: 'Asia/Kashgar', name: 'China Standard Time (Asia/Kashgar)' },
|
|
311
|
+
{ code: 'Asia/Macau', name: 'China Standard Time (Asia/Macau)' },
|
|
312
|
+
{ code: 'Asia/Shanghai', name: 'China Standard Time (Asia/Shanghai)' },
|
|
313
|
+
{ code: 'Asia/Urumqi', name: 'China Standard Time (Asia/Urumqi)' },
|
|
314
|
+
{ code: 'Etc/GMT+12', name: 'Dateline Standard Time (Etc/GMT+12)' },
|
|
315
|
+
{
|
|
316
|
+
code: 'Africa/Addis_Ababa',
|
|
317
|
+
name: 'E. Africa Standard Time (Africa/Addis_Ababa)'
|
|
318
|
+
},
|
|
319
|
+
{ code: 'Africa/Asmera', name: 'E. Africa Standard Time (Africa/Asmera)' },
|
|
320
|
+
{
|
|
321
|
+
code: 'Africa/Dar_es_Salaam',
|
|
322
|
+
name: 'E. Africa Standard Time (Africa/Dar_es_Salaam)'
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
code: 'Africa/Djibouti',
|
|
326
|
+
name: 'E. Africa Standard Time (Africa/Djibouti)'
|
|
327
|
+
},
|
|
328
|
+
{ code: 'Africa/Juba', name: 'E. Africa Standard Time (Africa/Juba)' },
|
|
329
|
+
{ code: 'Africa/Kampala', name: 'E. Africa Standard Time (Africa/Kampala)' },
|
|
330
|
+
{
|
|
331
|
+
code: 'Africa/Khartoum',
|
|
332
|
+
name: 'E. Africa Standard Time (Africa/Khartoum)'
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
code: 'Africa/Mogadishu',
|
|
336
|
+
name: 'E. Africa Standard Time (Africa/Mogadishu)'
|
|
337
|
+
},
|
|
338
|
+
{ code: 'Africa/Nairobi', name: 'E. Africa Standard Time (Africa/Nairobi)' },
|
|
339
|
+
{
|
|
340
|
+
code: 'Antarctica/Syowa',
|
|
341
|
+
name: 'E. Africa Standard Time (Antarctica/Syowa)'
|
|
342
|
+
},
|
|
343
|
+
{ code: 'Etc/GMT-3', name: 'E. Africa Standard Time (Etc/GMT-3)' },
|
|
344
|
+
{
|
|
345
|
+
code: 'Indian/Antananarivo',
|
|
346
|
+
name: 'E. Africa Standard Time (Indian/Antananarivo)'
|
|
347
|
+
},
|
|
348
|
+
{ code: 'Indian/Comoro', name: 'E. Africa Standard Time (Indian/Comoro)' },
|
|
349
|
+
{ code: 'Indian/Mayotte', name: 'E. Africa Standard Time (Indian/Mayotte)' },
|
|
350
|
+
{
|
|
351
|
+
code: 'Australia/Brisbane',
|
|
352
|
+
name: 'E. Australia Standard Time (Australia/Brisbane)'
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
code: 'Australia/Lindeman',
|
|
356
|
+
name: 'E. Australia Standard Time (Australia/Lindeman)'
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
code: 'America/Sao_Paulo',
|
|
360
|
+
name: 'E. South America Standard Time (America/Sao_Paulo)'
|
|
361
|
+
},
|
|
362
|
+
{ code: 'America/Detroit', name: 'Eastern Standard Time (America/Detroit)' },
|
|
363
|
+
{
|
|
364
|
+
code: 'America/Grand_Turk',
|
|
365
|
+
name: 'Eastern Standard Time (America/Grand_Turk)'
|
|
366
|
+
},
|
|
367
|
+
{ code: 'America/Havana', name: 'Eastern Standard Time (America/Havana)' },
|
|
368
|
+
{
|
|
369
|
+
code: 'America/Indiana/Petersburg',
|
|
370
|
+
name: 'Eastern Standard Time (America/Indiana/Petersburg)'
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
code: 'America/Indiana/Vincennes',
|
|
374
|
+
name: 'Eastern Standard Time (America/Indiana/Vincennes)'
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
code: 'America/Indiana/Winamac',
|
|
378
|
+
name: 'Eastern Standard Time (America/Indiana/Winamac)'
|
|
379
|
+
},
|
|
380
|
+
{ code: 'America/Iqaluit', name: 'Eastern Standard Time (America/Iqaluit)' },
|
|
381
|
+
{
|
|
382
|
+
code: 'America/Kentucky/Monticello',
|
|
383
|
+
name: 'Eastern Standard Time (America/Kentucky/Monticello)'
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
code: 'America/Louisville',
|
|
387
|
+
name: 'Eastern Standard Time (America/Louisville)'
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
code: 'America/Montreal',
|
|
391
|
+
name: 'Eastern Standard Time (America/Montreal)'
|
|
392
|
+
},
|
|
393
|
+
{ code: 'America/Nassau', name: 'Eastern Standard Time (America/Nassau)' },
|
|
394
|
+
{
|
|
395
|
+
code: 'America/New_York',
|
|
396
|
+
name: 'Eastern Standard Time (America/New_York)'
|
|
397
|
+
},
|
|
398
|
+
{ code: 'America/Nipigon', name: 'Eastern Standard Time (America/Nipigon)' },
|
|
399
|
+
{
|
|
400
|
+
code: 'America/Pangnirtung',
|
|
401
|
+
name: 'Eastern Standard Time (America/Pangnirtung)'
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
code: 'America/Port-au-Prince',
|
|
405
|
+
name: 'Eastern Standard Time (America/Port-au-Prince)'
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
code: 'America/Thunder_Bay',
|
|
409
|
+
name: 'Eastern Standard Time (America/Thunder_Bay)'
|
|
410
|
+
},
|
|
411
|
+
{ code: 'America/Toronto', name: 'Eastern Standard Time (America/Toronto)' },
|
|
412
|
+
{ code: 'EST5EDT', name: 'Eastern Standard Time (EST5EDT)' },
|
|
413
|
+
{ code: 'Africa/Cairo', name: 'Egypt Standard Time (Africa/Cairo)' },
|
|
414
|
+
{
|
|
415
|
+
code: 'Asia/Yekaterinburg',
|
|
416
|
+
name: 'Ekaterinburg Standard Time (Asia/Yekaterinburg)'
|
|
417
|
+
},
|
|
418
|
+
{ code: 'Europe/Helsinki', name: 'FLE Standard Time (Europe/Helsinki)' },
|
|
419
|
+
{ code: 'Europe/Kiev', name: 'FLE Standard Time (Europe/Kiev)' },
|
|
420
|
+
{ code: 'Europe/Mariehamn', name: 'FLE Standard Time (Europe/Mariehamn)' },
|
|
421
|
+
{ code: 'Europe/Riga', name: 'FLE Standard Time (Europe/Riga)' },
|
|
422
|
+
{ code: 'Europe/Simferopol', name: 'FLE Standard Time (Europe/Simferopol)' },
|
|
423
|
+
{ code: 'Europe/Sofia', name: 'FLE Standard Time (Europe/Sofia)' },
|
|
424
|
+
{ code: 'Europe/Tallinn', name: 'FLE Standard Time (Europe/Tallinn)' },
|
|
425
|
+
{ code: 'Europe/Uzhgorod', name: 'FLE Standard Time (Europe/Uzhgorod)' },
|
|
426
|
+
{ code: 'Europe/Vilnius', name: 'FLE Standard Time (Europe/Vilnius)' },
|
|
427
|
+
{ code: 'Europe/Zaporozhye', name: 'FLE Standard Time (Europe/Zaporozhye)' },
|
|
428
|
+
{ code: 'Pacific/Fiji', name: 'Fiji Standard Time (Pacific/Fiji)' },
|
|
429
|
+
{ code: 'Atlantic/Canary', name: 'GMT Standard Time (Atlantic/Canary)' },
|
|
430
|
+
{ code: 'Atlantic/Faeroe', name: 'GMT Standard Time (Atlantic/Faeroe)' },
|
|
431
|
+
{ code: 'Atlantic/Madeira', name: 'GMT Standard Time (Atlantic/Madeira)' },
|
|
432
|
+
{ code: 'Europe/Dublin', name: 'GMT Standard Time (Europe/Dublin)' },
|
|
433
|
+
{ code: 'Europe/Guernsey', name: 'GMT Standard Time (Europe/Guernsey)' },
|
|
434
|
+
{
|
|
435
|
+
code: 'Europe/Isle_of_Man',
|
|
436
|
+
name: 'GMT Standard Time (Europe/Isle_of_Man)'
|
|
437
|
+
},
|
|
438
|
+
{ code: 'Europe/Jersey', name: 'GMT Standard Time (Europe/Jersey)' },
|
|
439
|
+
{ code: 'Europe/Lisbon', name: 'GMT Standard Time (Europe/Lisbon)' },
|
|
440
|
+
{ code: 'Europe/London', name: 'GMT Standard Time (Europe/London)' },
|
|
441
|
+
{ code: 'Asia/Nicosia', name: 'GTB Standard Time (Asia/Nicosia)' },
|
|
442
|
+
{ code: 'Europe/Athens', name: 'GTB Standard Time (Europe/Athens)' },
|
|
443
|
+
{ code: 'Europe/Bucharest', name: 'GTB Standard Time (Europe/Bucharest)' },
|
|
444
|
+
{ code: 'Europe/Chisinau', name: 'GTB Standard Time (Europe/Chisinau)' },
|
|
445
|
+
{ code: 'Asia/Tbilisi', name: 'Georgian Standard Time (Asia/Tbilisi)' },
|
|
446
|
+
{
|
|
447
|
+
code: 'America/Godthab',
|
|
448
|
+
name: 'Greenland Standard Time (America/Godthab)'
|
|
449
|
+
},
|
|
450
|
+
{ code: 'Africa/Abidjan', name: 'Greenwich Standard Time (Africa/Abidjan)' },
|
|
451
|
+
{ code: 'Africa/Accra', name: 'Greenwich Standard Time (Africa/Accra)' },
|
|
452
|
+
{ code: 'Africa/Bamako', name: 'Greenwich Standard Time (Africa/Bamako)' },
|
|
453
|
+
{ code: 'Africa/Banjul', name: 'Greenwich Standard Time (Africa/Banjul)' },
|
|
454
|
+
{ code: 'Africa/Bissau', name: 'Greenwich Standard Time (Africa/Bissau)' },
|
|
455
|
+
{ code: 'Africa/Conakry', name: 'Greenwich Standard Time (Africa/Conakry)' },
|
|
456
|
+
{ code: 'Africa/Dakar', name: 'Greenwich Standard Time (Africa/Dakar)' },
|
|
457
|
+
{
|
|
458
|
+
code: 'Africa/Freetown',
|
|
459
|
+
name: 'Greenwich Standard Time (Africa/Freetown)'
|
|
460
|
+
},
|
|
461
|
+
{ code: 'Africa/Lome', name: 'Greenwich Standard Time (Africa/Lome)' },
|
|
462
|
+
{
|
|
463
|
+
code: 'Africa/Monrovia',
|
|
464
|
+
name: 'Greenwich Standard Time (Africa/Monrovia)'
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
code: 'Africa/Nouakchott',
|
|
468
|
+
name: 'Greenwich Standard Time (Africa/Nouakchott)'
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
code: 'Africa/Ouagadougou',
|
|
472
|
+
name: 'Greenwich Standard Time (Africa/Ouagadougou)'
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
code: 'Africa/Sao_Tome',
|
|
476
|
+
name: 'Greenwich Standard Time (Africa/Sao_Tome)'
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
code: 'Atlantic/Reykjavik',
|
|
480
|
+
name: 'Greenwich Standard Time (Atlantic/Reykjavik)'
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
code: 'Atlantic/St_Helena',
|
|
484
|
+
name: 'Greenwich Standard Time (Atlantic/St_Helena)'
|
|
485
|
+
},
|
|
486
|
+
{ code: 'Etc/GMT+10', name: 'Hawaiian Standard Time (Etc/GMT+10)' },
|
|
487
|
+
{
|
|
488
|
+
code: 'Pacific/Honolulu',
|
|
489
|
+
name: 'Hawaiian Standard Time (Pacific/Honolulu)'
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
code: 'Pacific/Johnston',
|
|
493
|
+
name: 'Hawaiian Standard Time (Pacific/Johnston)'
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
code: 'Pacific/Rarotonga',
|
|
497
|
+
name: 'Hawaiian Standard Time (Pacific/Rarotonga)'
|
|
498
|
+
},
|
|
499
|
+
{ code: 'Pacific/Tahiti', name: 'Hawaiian Standard Time (Pacific/Tahiti)' },
|
|
500
|
+
{ code: 'Asia/Calcutta', name: 'India Standard Time (Asia/Calcutta)' },
|
|
501
|
+
{ code: 'Asia/Tehran', name: 'Iran Standard Time (Asia/Tehran)' },
|
|
502
|
+
{ code: 'Asia/Jerusalem', name: 'Israel Standard Time (Asia/Jerusalem)' },
|
|
503
|
+
{ code: 'Asia/Amman', name: 'Jordan Standard Time (Asia/Amman)' },
|
|
504
|
+
{
|
|
505
|
+
code: 'Europe/Kaliningrad',
|
|
506
|
+
name: 'Kaliningrad Standard Time (Europe/Kaliningrad)'
|
|
507
|
+
},
|
|
508
|
+
{ code: 'Europe/Minsk', name: 'Kaliningrad Standard Time (Europe/Minsk)' },
|
|
509
|
+
{ code: 'Asia/Pyongyang', name: 'Korea Standard Time (Asia/Pyongyang)' },
|
|
510
|
+
{ code: 'Asia/Seoul', name: 'Korea Standard Time (Asia/Seoul)' },
|
|
511
|
+
{ code: 'Africa/Tripoli', name: 'Libya Standard Time (Africa/Tripoli)' },
|
|
512
|
+
{ code: 'Asia/Anadyr', name: 'Magadan Standard Time (Asia/Anadyr)' },
|
|
513
|
+
{ code: 'Asia/Kamchatka', name: 'Magadan Standard Time (Asia/Kamchatka)' },
|
|
514
|
+
{ code: 'Asia/Magadan', name: 'Magadan Standard Time (Asia/Magadan)' },
|
|
515
|
+
{ code: 'Indian/Mahe', name: 'Mauritius Standard Time (Indian/Mahe)' },
|
|
516
|
+
{
|
|
517
|
+
code: 'Indian/Mauritius',
|
|
518
|
+
name: 'Mauritius Standard Time (Indian/Mauritius)'
|
|
519
|
+
},
|
|
520
|
+
{ code: 'Indian/Reunion', name: 'Mauritius Standard Time (Indian/Reunion)' },
|
|
521
|
+
{ code: 'Asia/Beirut', name: 'Middle East Standard Time (Asia/Beirut)' },
|
|
522
|
+
{
|
|
523
|
+
code: 'America/Montevideo',
|
|
524
|
+
name: 'Montevideo Standard Time (America/Montevideo)'
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
code: 'Africa/Casablanca',
|
|
528
|
+
name: 'Morocco Standard Time (Africa/Casablanca)'
|
|
529
|
+
},
|
|
530
|
+
{ code: 'Africa/El_Aaiun', name: 'Morocco Standard Time (Africa/El_Aaiun)' },
|
|
531
|
+
{ code: 'America/Boise', name: 'Mountain Standard Time (America/Boise)' },
|
|
532
|
+
{
|
|
533
|
+
code: 'America/Cambridge_Bay',
|
|
534
|
+
name: 'Mountain Standard Time (America/Cambridge_Bay)'
|
|
535
|
+
},
|
|
536
|
+
{ code: 'America/Denver', name: 'Mountain Standard Time (America/Denver)' },
|
|
537
|
+
{
|
|
538
|
+
code: 'America/Edmonton',
|
|
539
|
+
name: 'Mountain Standard Time (America/Edmonton)'
|
|
540
|
+
},
|
|
541
|
+
{ code: 'America/Inuvik', name: 'Mountain Standard Time (America/Inuvik)' },
|
|
542
|
+
{ code: 'America/Ojinaga', name: 'Mountain Standard Time (America/Ojinaga)' },
|
|
543
|
+
{
|
|
544
|
+
code: 'America/Shiprock',
|
|
545
|
+
name: 'Mountain Standard Time (America/Shiprock)'
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
code: 'America/Yellowknife',
|
|
549
|
+
name: 'Mountain Standard Time (America/Yellowknife)'
|
|
550
|
+
},
|
|
551
|
+
{ code: 'MST7MDT', name: 'Mountain Standard Time (MST7MDT)' },
|
|
552
|
+
{
|
|
553
|
+
code: 'America/Chihuahua',
|
|
554
|
+
name: 'Mountain Standard Time (Mexico) (America/Chihuahua)'
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
code: 'America/Mazatlan',
|
|
558
|
+
name: 'Mountain Standard Time (Mexico) (America/Mazatlan)'
|
|
559
|
+
},
|
|
560
|
+
{ code: 'Asia/Rangoon', name: 'Myanmar Standard Time (Asia/Rangoon)' },
|
|
561
|
+
{ code: 'Indian/Cocos', name: 'Myanmar Standard Time (Indian/Cocos)' },
|
|
562
|
+
{
|
|
563
|
+
code: 'Asia/Novokuznetsk',
|
|
564
|
+
name: 'N. Central Asia Standard Time (Asia/Novokuznetsk)'
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
code: 'Asia/Novosibirsk',
|
|
568
|
+
name: 'N. Central Asia Standard Time (Asia/Novosibirsk)'
|
|
569
|
+
},
|
|
570
|
+
{ code: 'Asia/Omsk', name: 'N. Central Asia Standard Time (Asia/Omsk)' },
|
|
571
|
+
{ code: 'Africa/Windhoek', name: 'Namibia Standard Time (Africa/Windhoek)' },
|
|
572
|
+
{ code: 'Asia/Katmandu', name: 'Nepal Standard Time (Asia/Katmandu)' },
|
|
573
|
+
{
|
|
574
|
+
code: 'Antarctica/McMurdo',
|
|
575
|
+
name: 'New Zealand Standard Time (Antarctica/McMurdo)'
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
code: 'Antarctica/South_Pole',
|
|
579
|
+
name: 'New Zealand Standard Time (Antarctica/South_Pole)'
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
code: 'Pacific/Auckland',
|
|
583
|
+
name: 'New Zealand Standard Time (Pacific/Auckland)'
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
code: 'America/St_Johns',
|
|
587
|
+
name: 'Newfoundland Standard Time (America/St_Johns)'
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
code: 'Asia/Irkutsk',
|
|
591
|
+
name: 'North Asia East Standard Time (Asia/Irkutsk)'
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
code: 'Asia/Krasnoyarsk',
|
|
595
|
+
name: 'North Asia Standard Time (Asia/Krasnoyarsk)'
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
code: 'America/Santiago',
|
|
599
|
+
name: 'Pacific SA Standard Time (America/Santiago)'
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
code: 'Antarctica/Palmer',
|
|
603
|
+
name: 'Pacific SA Standard Time (Antarctica/Palmer)'
|
|
604
|
+
},
|
|
605
|
+
{ code: 'America/Dawson', name: 'Pacific Standard Time (America/Dawson)' },
|
|
606
|
+
{
|
|
607
|
+
code: 'America/Los_Angeles',
|
|
608
|
+
name: 'Pacific Standard Time (America/Los_Angeles)'
|
|
609
|
+
},
|
|
610
|
+
{ code: 'America/Tijuana', name: 'Pacific Standard Time (America/Tijuana)' },
|
|
611
|
+
{
|
|
612
|
+
code: 'America/Vancouver',
|
|
613
|
+
name: 'Pacific Standard Time (America/Vancouver)'
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
code: 'America/Whitehorse',
|
|
617
|
+
name: 'Pacific Standard Time (America/Whitehorse)'
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
code: 'America/Santa_Isabel',
|
|
621
|
+
name: 'Pacific Standard Time (Mexico) (America/Santa_Isabel)'
|
|
622
|
+
},
|
|
623
|
+
{ code: 'PST8PDT', name: 'Pacific Standard Time (PST8PDT)' },
|
|
624
|
+
{ code: 'Asia/Karachi', name: 'Pakistan Standard Time (Asia/Karachi)' },
|
|
625
|
+
{
|
|
626
|
+
code: 'America/Asuncion',
|
|
627
|
+
name: 'Paraguay Standard Time (America/Asuncion)'
|
|
628
|
+
},
|
|
629
|
+
{ code: 'Africa/Ceuta', name: 'Romance Standard Time (Africa/Ceuta)' },
|
|
630
|
+
{ code: 'Europe/Brussels', name: 'Romance Standard Time (Europe/Brussels)' },
|
|
631
|
+
{
|
|
632
|
+
code: 'Europe/Copenhagen',
|
|
633
|
+
name: 'Romance Standard Time (Europe/Copenhagen)'
|
|
634
|
+
},
|
|
635
|
+
{ code: 'Europe/Madrid', name: 'Romance Standard Time (Europe/Madrid)' },
|
|
636
|
+
{ code: 'Europe/Paris', name: 'Romance Standard Time (Europe/Paris)' },
|
|
637
|
+
{ code: 'Europe/Moscow', name: 'Russian Standard Time (Europe/Moscow)' },
|
|
638
|
+
{ code: 'Europe/Samara', name: 'Russian Standard Time (Europe/Samara)' },
|
|
639
|
+
{
|
|
640
|
+
code: 'Europe/Volgograd',
|
|
641
|
+
name: 'Russian Standard Time (Europe/Volgograd)'
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
code: 'America/Araguaina',
|
|
645
|
+
name: 'SA Eastern Standard Time (America/Araguaina)'
|
|
646
|
+
},
|
|
647
|
+
{ code: 'America/Belem', name: 'SA Eastern Standard Time (America/Belem)' },
|
|
648
|
+
{
|
|
649
|
+
code: 'America/Cayenne',
|
|
650
|
+
name: 'SA Eastern Standard Time (America/Cayenne)'
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
code: 'America/Fortaleza',
|
|
654
|
+
name: 'SA Eastern Standard Time (America/Fortaleza)'
|
|
655
|
+
},
|
|
656
|
+
{ code: 'America/Maceio', name: 'SA Eastern Standard Time (America/Maceio)' },
|
|
657
|
+
{
|
|
658
|
+
code: 'America/Paramaribo',
|
|
659
|
+
name: 'SA Eastern Standard Time (America/Paramaribo)'
|
|
660
|
+
},
|
|
661
|
+
{ code: 'America/Recife', name: 'SA Eastern Standard Time (America/Recife)' },
|
|
662
|
+
{
|
|
663
|
+
code: 'America/Santarem',
|
|
664
|
+
name: 'SA Eastern Standard Time (America/Santarem)'
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
code: 'Antarctica/Rothera',
|
|
668
|
+
name: 'SA Eastern Standard Time (Antarctica/Rothera)'
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
code: 'Atlantic/Stanley',
|
|
672
|
+
name: 'SA Eastern Standard Time (Atlantic/Stanley)'
|
|
673
|
+
},
|
|
674
|
+
{ code: 'Etc/GMT+3', name: 'SA Eastern Standard Time (Etc/GMT+3)' },
|
|
675
|
+
{ code: 'America/Bogota', name: 'SA Pacific Standard Time (America/Bogota)' },
|
|
676
|
+
{ code: 'America/Cayman', name: 'SA Pacific Standard Time (America/Cayman)' },
|
|
677
|
+
{
|
|
678
|
+
code: 'America/Coral_Harbour',
|
|
679
|
+
name: 'SA Pacific Standard Time (America/Coral_Harbour)'
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
code: 'America/Eirunepe',
|
|
683
|
+
name: 'SA Pacific Standard Time (America/Eirunepe)'
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
code: 'America/Guayaquil',
|
|
687
|
+
name: 'SA Pacific Standard Time (America/Guayaquil)'
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
code: 'America/Jamaica',
|
|
691
|
+
name: 'SA Pacific Standard Time (America/Jamaica)'
|
|
692
|
+
},
|
|
693
|
+
{ code: 'America/Lima', name: 'SA Pacific Standard Time (America/Lima)' },
|
|
694
|
+
{ code: 'America/Panama', name: 'SA Pacific Standard Time (America/Panama)' },
|
|
695
|
+
{
|
|
696
|
+
code: 'America/Rio_Branco',
|
|
697
|
+
name: 'SA Pacific Standard Time (America/Rio_Branco)'
|
|
698
|
+
},
|
|
699
|
+
{ code: 'Etc/GMT+5', name: 'SA Pacific Standard Time (Etc/GMT+5)' },
|
|
700
|
+
{
|
|
701
|
+
code: 'America/Anguilla',
|
|
702
|
+
name: 'SA Western Standard Time (America/Anguilla)'
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
code: 'America/Antigua',
|
|
706
|
+
name: 'SA Western Standard Time (America/Antigua)'
|
|
707
|
+
},
|
|
708
|
+
{ code: 'America/Aruba', name: 'SA Western Standard Time (America/Aruba)' },
|
|
709
|
+
{
|
|
710
|
+
code: 'America/Barbados',
|
|
711
|
+
name: 'SA Western Standard Time (America/Barbados)'
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
code: 'America/Blanc-Sablon',
|
|
715
|
+
name: 'SA Western Standard Time (America/Blanc-Sablon)'
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
code: 'America/Boa_Vista',
|
|
719
|
+
name: 'SA Western Standard Time (America/Boa_Vista)'
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
code: 'America/Curacao',
|
|
723
|
+
name: 'SA Western Standard Time (America/Curacao)'
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
code: 'America/Dominica',
|
|
727
|
+
name: 'SA Western Standard Time (America/Dominica)'
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
code: 'America/Grenada',
|
|
731
|
+
name: 'SA Western Standard Time (America/Grenada)'
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
code: 'America/Guadeloupe',
|
|
735
|
+
name: 'SA Western Standard Time (America/Guadeloupe)'
|
|
736
|
+
},
|
|
737
|
+
{ code: 'America/Guyana', name: 'SA Western Standard Time (America/Guyana)' },
|
|
738
|
+
{
|
|
739
|
+
code: 'America/Kralendijk',
|
|
740
|
+
name: 'SA Western Standard Time (America/Kralendijk)'
|
|
741
|
+
},
|
|
742
|
+
{ code: 'America/La_Paz', name: 'SA Western Standard Time (America/La_Paz)' },
|
|
743
|
+
{
|
|
744
|
+
code: 'America/Lower_Princes',
|
|
745
|
+
name: 'SA Western Standard Time (America/Lower_Princes)'
|
|
746
|
+
},
|
|
747
|
+
{ code: 'America/Manaus', name: 'SA Western Standard Time (America/Manaus)' },
|
|
748
|
+
{
|
|
749
|
+
code: 'America/Marigot',
|
|
750
|
+
name: 'SA Western Standard Time (America/Marigot)'
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
code: 'America/Martinique',
|
|
754
|
+
name: 'SA Western Standard Time (America/Martinique)'
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
code: 'America/Montserrat',
|
|
758
|
+
name: 'SA Western Standard Time (America/Montserrat)'
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
code: 'America/Port_of_Spain',
|
|
762
|
+
name: 'SA Western Standard Time (America/Port_of_Spain)'
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
code: 'America/Porto_Velho',
|
|
766
|
+
name: 'SA Western Standard Time (America/Porto_Velho)'
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
code: 'America/Puerto_Rico',
|
|
770
|
+
name: 'SA Western Standard Time (America/Puerto_Rico)'
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
code: 'America/Santo_Domingo',
|
|
774
|
+
name: 'SA Western Standard Time (America/Santo_Domingo)'
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
code: 'America/St_Barthelemy',
|
|
778
|
+
name: 'SA Western Standard Time (America/St_Barthelemy)'
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
code: 'America/St_Kitts',
|
|
782
|
+
name: 'SA Western Standard Time (America/St_Kitts)'
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
code: 'America/St_Lucia',
|
|
786
|
+
name: 'SA Western Standard Time (America/St_Lucia)'
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
code: 'America/St_Thomas',
|
|
790
|
+
name: 'SA Western Standard Time (America/St_Thomas)'
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
code: 'America/St_Vincent',
|
|
794
|
+
name: 'SA Western Standard Time (America/St_Vincent)'
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
code: 'America/Tortola',
|
|
798
|
+
name: 'SA Western Standard Time (America/Tortola)'
|
|
799
|
+
},
|
|
800
|
+
{ code: 'Etc/GMT+4', name: 'SA Western Standard Time (Etc/GMT+4)' },
|
|
801
|
+
{
|
|
802
|
+
code: 'Antarctica/Davis',
|
|
803
|
+
name: 'SE Asia Standard Time (Antarctica/Davis)'
|
|
804
|
+
},
|
|
805
|
+
{ code: 'Asia/Bangkok', name: 'SE Asia Standard Time (Asia/Bangkok)' },
|
|
806
|
+
{ code: 'Asia/Hovd', name: 'SE Asia Standard Time (Asia/Hovd)' },
|
|
807
|
+
{ code: 'Asia/Jakarta', name: 'SE Asia Standard Time (Asia/Jakarta)' },
|
|
808
|
+
{ code: 'Asia/Phnom_Penh', name: 'SE Asia Standard Time (Asia/Phnom_Penh)' },
|
|
809
|
+
{ code: 'Asia/Pontianak', name: 'SE Asia Standard Time (Asia/Pontianak)' },
|
|
810
|
+
{ code: 'Asia/Saigon', name: 'SE Asia Standard Time (Asia/Saigon)' },
|
|
811
|
+
{ code: 'Asia/Vientiane', name: 'SE Asia Standard Time (Asia/Vientiane)' },
|
|
812
|
+
{ code: 'Etc/GMT-7', name: 'SE Asia Standard Time (Etc/GMT-7)' },
|
|
813
|
+
{
|
|
814
|
+
code: 'Indian/Christmas',
|
|
815
|
+
name: 'SE Asia Standard Time (Indian/Christmas)'
|
|
816
|
+
},
|
|
817
|
+
{ code: 'Pacific/Apia', name: 'Samoa Standard Time (Pacific/Apia)' },
|
|
818
|
+
{ code: 'Asia/Brunei', name: 'Singapore Standard Time (Asia/Brunei)' },
|
|
819
|
+
{
|
|
820
|
+
code: 'Asia/Kuala_Lumpur',
|
|
821
|
+
name: 'Singapore Standard Time (Asia/Kuala_Lumpur)'
|
|
822
|
+
},
|
|
823
|
+
{ code: 'Asia/Kuching', name: 'Singapore Standard Time (Asia/Kuching)' },
|
|
824
|
+
{ code: 'Asia/Makassar', name: 'Singapore Standard Time (Asia/Makassar)' },
|
|
825
|
+
{ code: 'Asia/Manila', name: 'Singapore Standard Time (Asia/Manila)' },
|
|
826
|
+
{ code: 'Asia/Singapore', name: 'Singapore Standard Time (Asia/Singapore)' },
|
|
827
|
+
{ code: 'Etc/GMT-8', name: 'Singapore Standard Time (Etc/GMT-8)' },
|
|
828
|
+
{
|
|
829
|
+
code: 'Africa/Blantyre',
|
|
830
|
+
name: 'South Africa Standard Time (Africa/Blantyre)'
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
code: 'Africa/Bujumbura',
|
|
834
|
+
name: 'South Africa Standard Time (Africa/Bujumbura)'
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
code: 'Africa/Gaborone',
|
|
838
|
+
name: 'South Africa Standard Time (Africa/Gaborone)'
|
|
839
|
+
},
|
|
840
|
+
{ code: 'Africa/Harare', name: 'South Africa Standard Time (Africa/Harare)' },
|
|
841
|
+
{
|
|
842
|
+
code: 'Africa/Johannesburg',
|
|
843
|
+
name: 'South Africa Standard Time (Africa/Johannesburg)'
|
|
844
|
+
},
|
|
845
|
+
{ code: 'Africa/Kigali', name: 'South Africa Standard Time (Africa/Kigali)' },
|
|
846
|
+
{
|
|
847
|
+
code: 'Africa/Lubumbashi',
|
|
848
|
+
name: 'South Africa Standard Time (Africa/Lubumbashi)'
|
|
849
|
+
},
|
|
850
|
+
{ code: 'Africa/Lusaka', name: 'South Africa Standard Time (Africa/Lusaka)' },
|
|
851
|
+
{ code: 'Africa/Maputo', name: 'South Africa Standard Time (Africa/Maputo)' },
|
|
852
|
+
{ code: 'Africa/Maseru', name: 'South Africa Standard Time (Africa/Maseru)' },
|
|
853
|
+
{
|
|
854
|
+
code: 'Africa/Mbabane',
|
|
855
|
+
name: 'South Africa Standard Time (Africa/Mbabane)'
|
|
856
|
+
},
|
|
857
|
+
{ code: 'Etc/GMT-2', name: 'South Africa Standard Time (Etc/GMT-2)' },
|
|
858
|
+
{ code: 'Asia/Colombo', name: 'Sri Lanka Standard Time (Asia/Colombo)' },
|
|
859
|
+
{ code: 'Asia/Damascus', name: 'Syria Standard Time (Asia/Damascus)' },
|
|
860
|
+
{ code: 'Asia/Taipei', name: 'Taipei Standard Time (Asia/Taipei)' },
|
|
861
|
+
{
|
|
862
|
+
code: 'Australia/Currie',
|
|
863
|
+
name: 'Tasmania Standard Time (Australia/Currie)'
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
code: 'Australia/Hobart',
|
|
867
|
+
name: 'Tasmania Standard Time (Australia/Hobart)'
|
|
868
|
+
},
|
|
869
|
+
{ code: 'Asia/Dili', name: 'Tokyo Standard Time (Asia/Dili)' },
|
|
870
|
+
{ code: 'Asia/Jayapura', name: 'Tokyo Standard Time (Asia/Jayapura)' },
|
|
871
|
+
{ code: 'Asia/Tokyo', name: 'Tokyo Standard Time (Asia/Tokyo)' },
|
|
872
|
+
{ code: 'Etc/GMT-9', name: 'Tokyo Standard Time (Etc/GMT-9)' },
|
|
873
|
+
{ code: 'Pacific/Palau', name: 'Tokyo Standard Time (Pacific/Palau)' },
|
|
874
|
+
{ code: 'Etc/GMT-13', name: 'Tonga Standard Time (Etc/GMT-13)' },
|
|
875
|
+
{
|
|
876
|
+
code: 'Pacific/Enderbury',
|
|
877
|
+
name: 'Tonga Standard Time (Pacific/Enderbury)'
|
|
878
|
+
},
|
|
879
|
+
{ code: 'Pacific/Fakaofo', name: 'Tonga Standard Time (Pacific/Fakaofo)' },
|
|
880
|
+
{
|
|
881
|
+
code: 'Pacific/Tongatapu',
|
|
882
|
+
name: 'Tonga Standard Time (Pacific/Tongatapu)'
|
|
883
|
+
},
|
|
884
|
+
{ code: 'Europe/Istanbul', name: 'Turkey Standard Time (Europe/Istanbul)' },
|
|
885
|
+
{
|
|
886
|
+
code: 'America/Indiana/Marengo',
|
|
887
|
+
name: 'US Eastern Standard Time (America/Indiana/Marengo)'
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
code: 'America/Indiana/Vevay',
|
|
891
|
+
name: 'US Eastern Standard Time (America/Indiana/Vevay)'
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
code: 'America/Indianapolis',
|
|
895
|
+
name: 'US Eastern Standard Time (America/Indianapolis)'
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
code: 'America/Creston',
|
|
899
|
+
name: 'US Mountain Standard Time (America/Creston)'
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
code: 'America/Dawson_Creek',
|
|
903
|
+
name: 'US Mountain Standard Time (America/Dawson_Creek)'
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
code: 'America/Hermosillo',
|
|
907
|
+
name: 'US Mountain Standard Time (America/Hermosillo)'
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
code: 'America/Phoenix',
|
|
911
|
+
name: 'US Mountain Standard Time (America/Phoenix)'
|
|
912
|
+
},
|
|
913
|
+
{ code: 'Etc/GMT+7', name: 'US Mountain Standard Time (Etc/GMT+7)' },
|
|
914
|
+
{ code: 'America/Danmarkshavn', name: 'UTC (America/Danmarkshavn)' },
|
|
915
|
+
{ code: 'Etc/GMT', name: 'UTC (Etc/GMT)' },
|
|
916
|
+
{ code: 'Etc/GMT-12', name: 'UTC+12 (Etc/GMT-12)' },
|
|
917
|
+
{ code: 'Pacific/Funafuti', name: 'UTC+12 (Pacific/Funafuti)' },
|
|
918
|
+
{ code: 'Pacific/Kwajalein', name: 'UTC+12 (Pacific/Kwajalein)' },
|
|
919
|
+
{ code: 'Pacific/Majuro', name: 'UTC+12 (Pacific/Majuro)' },
|
|
920
|
+
{ code: 'Pacific/Nauru', name: 'UTC+12 (Pacific/Nauru)' },
|
|
921
|
+
{ code: 'Pacific/Tarawa', name: 'UTC+12 (Pacific/Tarawa)' },
|
|
922
|
+
{ code: 'Pacific/Wake', name: 'UTC+12 (Pacific/Wake)' },
|
|
923
|
+
{ code: 'Pacific/Wallis', name: 'UTC+12 (Pacific/Wallis)' },
|
|
924
|
+
{ code: 'America/Noronha', name: 'UTC-02 (America/Noronha)' },
|
|
925
|
+
{ code: 'Atlantic/South_Georgia', name: 'UTC-02 (Atlantic/South_Georgia)' },
|
|
926
|
+
{ code: 'Etc/GMT+2', name: 'UTC-02 (Etc/GMT+2)' },
|
|
927
|
+
{ code: 'Etc/GMT+11', name: 'UTC-11 (Etc/GMT+11)' },
|
|
928
|
+
{ code: 'Pacific/Midway', name: 'UTC-11 (Pacific/Midway)' },
|
|
929
|
+
{ code: 'Pacific/Niue', name: 'UTC-11 (Pacific/Niue)' },
|
|
930
|
+
{ code: 'Pacific/Pago_Pago', name: 'UTC-11 (Pacific/Pago_Pago)' },
|
|
931
|
+
{
|
|
932
|
+
code: 'Asia/Choibalsan',
|
|
933
|
+
name: 'Ulaanbaatar Standard Time (Asia/Choibalsan)'
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
code: 'Asia/Ulaanbaatar',
|
|
937
|
+
name: 'Ulaanbaatar Standard Time (Asia/Ulaanbaatar)'
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
code: 'America/Caracas',
|
|
941
|
+
name: 'Venezuela Standard Time (America/Caracas)'
|
|
942
|
+
},
|
|
943
|
+
{ code: 'Asia/Sakhalin', name: 'Vladivostok Standard Time (Asia/Sakhalin)' },
|
|
944
|
+
{ code: 'Asia/Ust-Nera', name: 'Vladivostok Standard Time (Asia/Ust-Nera)' },
|
|
945
|
+
{
|
|
946
|
+
code: 'Asia/Vladivostok',
|
|
947
|
+
name: 'Vladivostok Standard Time (Asia/Vladivostok)'
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
code: 'Antarctica/Casey',
|
|
951
|
+
name: 'W. Australia Standard Time (Antarctica/Casey)'
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
code: 'Australia/Perth',
|
|
955
|
+
name: 'W. Australia Standard Time (Australia/Perth)'
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
code: 'Africa/Algiers',
|
|
959
|
+
name: 'W. Central Africa Standard Time (Africa/Algiers)'
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
code: 'Africa/Bangui',
|
|
963
|
+
name: 'W. Central Africa Standard Time (Africa/Bangui)'
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
code: 'Africa/Brazzaville',
|
|
967
|
+
name: 'W. Central Africa Standard Time (Africa/Brazzaville)'
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
code: 'Africa/Douala',
|
|
971
|
+
name: 'W. Central Africa Standard Time (Africa/Douala)'
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
code: 'Africa/Kinshasa',
|
|
975
|
+
name: 'W. Central Africa Standard Time (Africa/Kinshasa)'
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
code: 'Africa/Lagos',
|
|
979
|
+
name: 'W. Central Africa Standard Time (Africa/Lagos)'
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
code: 'Africa/Libreville',
|
|
983
|
+
name: 'W. Central Africa Standard Time (Africa/Libreville)'
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
code: 'Africa/Luanda',
|
|
987
|
+
name: 'W. Central Africa Standard Time (Africa/Luanda)'
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
code: 'Africa/Malabo',
|
|
991
|
+
name: 'W. Central Africa Standard Time (Africa/Malabo)'
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
code: 'Africa/Ndjamena',
|
|
995
|
+
name: 'W. Central Africa Standard Time (Africa/Ndjamena)'
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
code: 'Africa/Niamey',
|
|
999
|
+
name: 'W. Central Africa Standard Time (Africa/Niamey)'
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
code: 'Africa/Porto-Novo',
|
|
1003
|
+
name: 'W. Central Africa Standard Time (Africa/Porto-Novo)'
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
code: 'Africa/Tunis',
|
|
1007
|
+
name: 'W. Central Africa Standard Time (Africa/Tunis)'
|
|
1008
|
+
},
|
|
1009
|
+
{ code: 'Etc/GMT-1', name: 'W. Central Africa Standard Time (Etc/GMT-1)' },
|
|
1010
|
+
{
|
|
1011
|
+
code: 'Arctic/Longyearbyen',
|
|
1012
|
+
name: 'W. Europe Standard Time (Arctic/Longyearbyen)'
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
code: 'Europe/Amsterdam',
|
|
1016
|
+
name: 'W. Europe Standard Time (Europe/Amsterdam)'
|
|
1017
|
+
},
|
|
1018
|
+
{ code: 'Europe/Andorra', name: 'W. Europe Standard Time (Europe/Andorra)' },
|
|
1019
|
+
{ code: 'Europe/Berlin', name: 'W. Europe Standard Time (Europe/Berlin)' },
|
|
1020
|
+
{
|
|
1021
|
+
code: 'Europe/Busingen',
|
|
1022
|
+
name: 'W. Europe Standard Time (Europe/Busingen)'
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
code: 'Europe/Gibraltar',
|
|
1026
|
+
name: 'W. Europe Standard Time (Europe/Gibraltar)'
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
code: 'Europe/Luxembourg',
|
|
1030
|
+
name: 'W. Europe Standard Time (Europe/Luxembourg)'
|
|
1031
|
+
},
|
|
1032
|
+
{ code: 'Europe/Malta', name: 'W. Europe Standard Time (Europe/Malta)' },
|
|
1033
|
+
{ code: 'Europe/Monaco', name: 'W. Europe Standard Time (Europe/Monaco)' },
|
|
1034
|
+
{ code: 'Europe/Oslo', name: 'W. Europe Standard Time (Europe/Oslo)' },
|
|
1035
|
+
{ code: 'Europe/Rome', name: 'W. Europe Standard Time (Europe/Rome)' },
|
|
1036
|
+
{
|
|
1037
|
+
code: 'Europe/San_Marino',
|
|
1038
|
+
name: 'W. Europe Standard Time (Europe/San_Marino)'
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
code: 'Europe/Stockholm',
|
|
1042
|
+
name: 'W. Europe Standard Time (Europe/Stockholm)'
|
|
1043
|
+
},
|
|
1044
|
+
{ code: 'Europe/Vaduz', name: 'W. Europe Standard Time (Europe/Vaduz)' },
|
|
1045
|
+
{ code: 'Europe/Vatican', name: 'W. Europe Standard Time (Europe/Vatican)' },
|
|
1046
|
+
{ code: 'Europe/Vienna', name: 'W. Europe Standard Time (Europe/Vienna)' },
|
|
1047
|
+
{ code: 'Europe/Zurich', name: 'W. Europe Standard Time (Europe/Zurich)' },
|
|
1048
|
+
{
|
|
1049
|
+
code: 'Antarctica/Mawson',
|
|
1050
|
+
name: 'West Asia Standard Time (Antarctica/Mawson)'
|
|
1051
|
+
},
|
|
1052
|
+
{ code: 'Asia/Aqtau', name: 'West Asia Standard Time (Asia/Aqtau)' },
|
|
1053
|
+
{ code: 'Asia/Aqtobe', name: 'West Asia Standard Time (Asia/Aqtobe)' },
|
|
1054
|
+
{ code: 'Asia/Ashgabat', name: 'West Asia Standard Time (Asia/Ashgabat)' },
|
|
1055
|
+
{ code: 'Asia/Dushanbe', name: 'West Asia Standard Time (Asia/Dushanbe)' },
|
|
1056
|
+
{ code: 'Asia/Oral', name: 'West Asia Standard Time (Asia/Oral)' },
|
|
1057
|
+
{ code: 'Asia/Samarkand', name: 'West Asia Standard Time (Asia/Samarkand)' },
|
|
1058
|
+
{ code: 'Asia/Tashkent', name: 'West Asia Standard Time (Asia/Tashkent)' },
|
|
1059
|
+
{ code: 'Etc/GMT-5', name: 'West Asia Standard Time (Etc/GMT-5)' },
|
|
1060
|
+
{
|
|
1061
|
+
code: 'Indian/Kerguelen',
|
|
1062
|
+
name: 'West Asia Standard Time (Indian/Kerguelen)'
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
code: 'Indian/Maldives',
|
|
1066
|
+
name: 'West Asia Standard Time (Indian/Maldives)'
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
code: 'Antarctica/DumontDUrville',
|
|
1070
|
+
name: 'West Pacific Standard Time (Antarctica/DumontDUrville)'
|
|
1071
|
+
},
|
|
1072
|
+
{ code: 'Etc/GMT-10', name: 'West Pacific Standard Time (Etc/GMT-10)' },
|
|
1073
|
+
{ code: 'Pacific/Guam', name: 'West Pacific Standard Time (Pacific/Guam)' },
|
|
1074
|
+
{
|
|
1075
|
+
code: 'Pacific/Port_Moresby',
|
|
1076
|
+
name: 'West Pacific Standard Time (Pacific/Port_Moresby)'
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
code: 'Pacific/Saipan',
|
|
1080
|
+
name: 'West Pacific Standard Time (Pacific/Saipan)'
|
|
1081
|
+
},
|
|
1082
|
+
{ code: 'Pacific/Truk', name: 'West Pacific Standard Time (Pacific/Truk)' },
|
|
1083
|
+
{ code: 'Asia/Khandyga', name: 'Yakutsk Standard Time (Asia/Khandyga)' },
|
|
1084
|
+
{ code: 'Asia/Yakutsk', name: 'Yakutsk Standard Time (Asia/Yakutsk)' }
|
|
1085
|
+
];
|