2022-05-05 03:02:50 +00:00
|
|
|
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,
|
|
|
|
};
|