aboutsummaryrefslogtreecommitdiffstats
path: root/cover.go
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2026-05-08 17:44:16 -0400
committerSam Anthony <sam@samanthony.xyz>2026-05-08 17:44:16 -0400
commit8e1e1b0b71cea0705bb2ab7ed9b4c25379b92a77 (patch)
tree130a8e83d94ceef4a239336a32fa1a8b9ee7f697 /cover.go
parentace7694bad5752aa38fec3a13c071cf7b2bebfce (diff)
downloadlulu-8e1e1b0b71cea0705bb2ab7ed9b4c25379b92a77.zip
shipping address and speed
Diffstat (limited to 'cover.go')
-rw-r--r--cover.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cover.go b/cover.go
index ba2bc2a..a44ebab 100644
--- a/cover.go
+++ b/cover.go
@@ -38,7 +38,7 @@ func (s CoverValidationStatus) IsFinal() bool {
// coverDimensionsReq is the json body of a /cover-dimensions/ request.
type coverDimensionsReq struct {
- PkgId PkgId `json:"pod_package_id"`
+ Mfg PkgId `json:"pod_package_id"`
NPages uint `json:"interior_page_count"`
Unit Unit `json:"unit"`
}
@@ -46,7 +46,7 @@ type coverDimensionsReq struct {
// validateCoverReq is the json body of a /validate-cover/ request.
type validateCoverReq struct {
SrcUrl string `json:"source_url"`
- PkgId PkgId `json:"pod_package_id"`
+ Mfg PkgId `json:"pod_package_id"`
NPages uint `json:"interior_page_count"`
}