@cohostvip/cohost-node 0.1.1 → 0.1.2
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.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -917,7 +917,7 @@ interface OrderItem {
|
|
|
917
917
|
options: any | null;
|
|
918
918
|
offering: OrderItemOffering;
|
|
919
919
|
}
|
|
920
|
-
interface OrderItemOffering extends Pick<Offering, "id" | "name" | "type" | "includes" | "maximumQuantity" | "minimumQuantity"> {
|
|
920
|
+
interface OrderItemOffering extends Pick<Offering, "id" | "name" | "type" | "includes" | "sorting" | "maximumQuantity" | "minimumQuantity"> {
|
|
921
921
|
costs?: OfferingCosts;
|
|
922
922
|
/**
|
|
923
923
|
* doc assicated with this offering in the DB.
|
|
@@ -1176,7 +1176,7 @@ interface OrderContext$1 {
|
|
|
1176
1176
|
*/
|
|
1177
1177
|
[custom: string]: unknown;
|
|
1178
1178
|
}
|
|
1179
|
-
type CartSessionItem = Pick<OrderItem, "id" | "details" | "offeringId" | "quantity" | "options" | "offering"> & {
|
|
1179
|
+
type CartSessionItem = Pick<OrderItem, "id" | "details" | "offeringId" | "quantity" | "options" | "offering" | "tableCommitmentId"> & {
|
|
1180
1180
|
costs?: OrderItemCosts;
|
|
1181
1181
|
};
|
|
1182
1182
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -917,7 +917,7 @@ interface OrderItem {
|
|
|
917
917
|
options: any | null;
|
|
918
918
|
offering: OrderItemOffering;
|
|
919
919
|
}
|
|
920
|
-
interface OrderItemOffering extends Pick<Offering, "id" | "name" | "type" | "includes" | "maximumQuantity" | "minimumQuantity"> {
|
|
920
|
+
interface OrderItemOffering extends Pick<Offering, "id" | "name" | "type" | "includes" | "sorting" | "maximumQuantity" | "minimumQuantity"> {
|
|
921
921
|
costs?: OfferingCosts;
|
|
922
922
|
/**
|
|
923
923
|
* doc assicated with this offering in the DB.
|
|
@@ -1176,7 +1176,7 @@ interface OrderContext$1 {
|
|
|
1176
1176
|
*/
|
|
1177
1177
|
[custom: string]: unknown;
|
|
1178
1178
|
}
|
|
1179
|
-
type CartSessionItem = Pick<OrderItem, "id" | "details" | "offeringId" | "quantity" | "options" | "offering"> & {
|
|
1179
|
+
type CartSessionItem = Pick<OrderItem, "id" | "details" | "offeringId" | "quantity" | "options" | "offering" | "tableCommitmentId"> & {
|
|
1180
1180
|
costs?: OrderItemCosts;
|
|
1181
1181
|
};
|
|
1182
1182
|
/**
|