shipping-rates-validation-rules.js 553 B

123456789101112131415161718192021222324252627
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. define([], function () {
  6. 'use strict';
  7. return {
  8. /**
  9. * @return {Object}
  10. */
  11. getRules: function () {
  12. return {
  13. 'postcode': {
  14. 'required': true
  15. },
  16. 'country_id': {
  17. 'required': true
  18. },
  19. 'city': {
  20. 'required': true
  21. }
  22. };
  23. }
  24. };
  25. });