woocommerce/packages/js/api-core-tests/data/shared/index.js

15 lines
304 B
JavaScript
Raw Normal View History

2021-08-23 17:39:03 +00:00
const { customerBilling, customerShipping } = require('./customer');
const {
2021-09-07 22:20:44 +00:00
batch,
2021-08-23 17:39:03 +00:00
getBatchPayloadExample
} = require('./batch-update');
2021-09-07 22:20:44 +00:00
const { errorResponse } = require('./error-response');
2021-08-23 17:39:03 +00:00
module.exports = {
customerBilling,
customerShipping,
2021-09-07 22:20:44 +00:00
batch,
2021-08-23 17:39:03 +00:00
getBatchPayloadExample,
2021-09-07 22:20:44 +00:00
errorResponse,
};