picker-db 5.0.16 → 5.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## v5.0.18
|
|
6
|
+
### Added
|
|
7
|
+
* DP-14557: Added `externalStoreID` field to Booking and User schemas (String, default `null`) so the store's external identifier can be snapshotted onto bookings.
|
|
8
|
+
|
|
5
9
|
## v5.0.16
|
|
6
10
|
### Added
|
|
7
11
|
* DP-14676: Added `bookingNotes` field to Booking Stops schema (String) for capturing additional notes related to booking stops.
|
|
@@ -418,6 +418,13 @@ module.exports = (connection) => {
|
|
|
418
418
|
BOOKING.VOLUMES.XLARGE,
|
|
419
419
|
],
|
|
420
420
|
},
|
|
421
|
+
// Ground-only: S3 URI (s3://bucket/key) of the carrier-issued shipping label.
|
|
422
|
+
// Written by gd-search-orchestrator-service after createOrder succeeds
|
|
423
|
+
// (DP-14584). The dashboard-backend exposes it to the front via a
|
|
424
|
+
// pre-signed GET URL on demand — the raw URI is never returned to clients.
|
|
425
|
+
labelUrl: {
|
|
426
|
+
type: String,
|
|
427
|
+
},
|
|
421
428
|
transactionDetails: {
|
|
422
429
|
itemCharge: {
|
|
423
430
|
type: connection.base.Schema.ObjectId,
|
|
@@ -810,6 +817,10 @@ module.exports = (connection) => {
|
|
|
810
817
|
externalBookingId: {
|
|
811
818
|
type: String,
|
|
812
819
|
},
|
|
820
|
+
externalStoreID: {
|
|
821
|
+
type: String,
|
|
822
|
+
default: null,
|
|
823
|
+
},
|
|
813
824
|
userBookingCreator: {
|
|
814
825
|
type: String,
|
|
815
826
|
},
|