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

12 lines
308 B
JavaScript
Raw Normal View History

const { customerBilling, customerShipping } = require( './customer' );
const { batch, getBatchPayloadExample } = require( './batch-update' );
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,
};