shipping-rates-validation-rules.js 472 B

123456789101112131415161718192021222324
  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. 'country_id': {
  14. 'required': true
  15. },
  16. 'postcode': {
  17. 'required': false
  18. }
  19. };
  20. }
  21. };
  22. });