@pinelab/vendure-plugin-qls-fulfillment 2.0.0 → 2.0.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/CHANGELOG.md +4 -0
- package/dist/lib/client-types.d.ts +0 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
# 2.0.1 (2026-06-15)
|
|
2
|
+
|
|
3
|
+
- Fixed fulfillment product detail type
|
|
4
|
+
|
|
1
5
|
# 2.0.0 (2026-06-10)
|
|
2
6
|
|
|
3
7
|
- Restructure plugin options into nested `orderSync` and `productSync` objects. This is a **breaking change**: all plugin options must now be organized under `orderSync` (for order-related hooks) and `productSync` (for product-related hooks).
|
|
@@ -170,12 +170,6 @@ export type IncomingOrderWebhook = Pick<FulfillmentOrder, 'customer_reference' |
|
|
|
170
170
|
* Getting via list, sku or filtering does NOT return this full object
|
|
171
171
|
*/
|
|
172
172
|
export interface FulfillmentProductDetail {
|
|
173
|
-
data: Data;
|
|
174
|
-
meta: Meta;
|
|
175
|
-
errors: any[];
|
|
176
|
-
pagination: any;
|
|
177
|
-
}
|
|
178
|
-
export interface Data {
|
|
179
173
|
id: string;
|
|
180
174
|
company_id: string;
|
|
181
175
|
collection_id: any;
|