@cendo/database-schemas 2.3.0 → 2.3.1
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/package.json
CHANGED
|
@@ -20,6 +20,13 @@ const FulfillmentStore = new Schema({
|
|
|
20
20
|
index: true,
|
|
21
21
|
},
|
|
22
22
|
|
|
23
|
+
/** Fulfillment vendor/provider name (e.g., 'dreamship', 'printify') */
|
|
24
|
+
vendor: {
|
|
25
|
+
type: String,
|
|
26
|
+
trim: true,
|
|
27
|
+
lowercase: true,
|
|
28
|
+
},
|
|
29
|
+
|
|
23
30
|
/** API authentication key for the provider */
|
|
24
31
|
api_key: {
|
|
25
32
|
type: String,
|