@use-stall/types 0.2.1 → 0.2.3
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 +1 -1
- package/src/fulfillment.d.ts +2 -2
package/package.json
CHANGED
package/src/fulfillment.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { UnifiedCustomerAddressType } from "./customers";
|
|
2
|
-
export type
|
|
2
|
+
export type FulfillmentMethods =
|
|
3
3
|
| "shipment" // via carrier / courier to an address
|
|
4
4
|
| "local_delivery" // delivered by merchant or local fleet
|
|
5
5
|
| "pickup" // customer picks up at a physical location / collection
|
|
@@ -20,7 +20,7 @@ export interface FulfillmentProvider {
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
export interface FulfillmentMethodType {
|
|
23
|
-
type:
|
|
23
|
+
type: FulfillmentMethods;
|
|
24
24
|
offline_support: boolean;
|
|
25
25
|
instant: boolean; // whether the fulfillment is done instantly like collection/pickup
|
|
26
26
|
}
|