package fakes

const (
	Success                        = `Success`
	SuccessNetsuiteUpdate          = `SuccessNetsuiteUpdate`
	SuccessProxy                   = `SuccessProxy`
	APIFailed                      = "API Failed"
	SuccessAuction                 = `12345`
	ErrorUnauthorized              = `error_unauthorized`
	InvalidBFF                     = `invalid_BFF`
	NoBFFResponse                  = `no_bff_response`
	BFFNoOrders                    = `bff_no_orders`
	NotFound                       = `not_found`
	ProxyNotFound                  = `/proxy/not_found`
	ProxySuccess                   = `/proxy/Success`
	httpBodyResponseUnauthorized   = `{"error": {"code": 401,"message": "Unauthorized"}}`
	V1AuthMe                       = "/v1/auth/me"
	SaleOrderSummary               = "/v1/sale-orders/summary"
	ApiResponseNotFound            = `Not Found`
	OrderRefWithShipmentAndASNData = `9999`
	OrderRefWithNoShipment         = `1234`
	OrderRefWithShipmentError      = `0`
	OrderRefWithASNError           = `12340`
	OrderRefWithNoASN              = `12341`
)

var (
	ExportASNSuccessResponse = []byte(`sku,product_name,serial,imei
SKU-1234,PRODUCT-1234,SERIAL-1234,IMEI-1234
`)

	ExportASNUnsupportedFileFormatMessage = "file format is not supported"
	ExportASNFailedGetShipmentMessage     = "failed to get shipments data"
	ExportASNNoShipmentMessage            = "no shipments data found for this order"
	ExportASNFailedGetASNMessage          = "failed to get ASN data"
	ExportASNNoASNMessage                 = "no ASN data found for this shipment"
)
