@dv4resi/dvss-backend-module-offering-im 0.0.16 → 0.0.17
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/dist/index.d.ts +3 -0
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -531,6 +531,9 @@ interface ICreateOrderResponse {
|
|
|
531
531
|
items: (Pick<IBookableItem, 'externalId' | 'type' | 'name'> & {
|
|
532
532
|
totalPrice?: number;
|
|
533
533
|
primaryAsset?: IMedia;
|
|
534
|
+
meta: {
|
|
535
|
+
basketItemId: string;
|
|
536
|
+
};
|
|
534
537
|
})[];
|
|
535
538
|
}
|
|
536
539
|
interface IAddItemToOrderItemConfig {
|
package/dist/index.js
CHANGED
|
@@ -3909,7 +3909,10 @@ exports.TrybeWellnessManagement = class _TrybeWellnessManagement {
|
|
|
3909
3909
|
meta: {
|
|
3910
3910
|
url: offering.data.image.original_url
|
|
3911
3911
|
}
|
|
3912
|
-
} : void 0
|
|
3912
|
+
} : void 0,
|
|
3913
|
+
meta: {
|
|
3914
|
+
basketItemId: bookableItem.id
|
|
3915
|
+
}
|
|
3913
3916
|
};
|
|
3914
3917
|
}) ?? []
|
|
3915
3918
|
};
|