@matchi/api 0.20241118.2 → 0.20241118.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/dist/index.d.mts +7 -1
- package/dist/index.d.ts +7 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -951,7 +951,13 @@ type paymentDetails = {
|
|
|
951
951
|
*/
|
|
952
952
|
created: string;
|
|
953
953
|
/**
|
|
954
|
-
*
|
|
954
|
+
* Order status.
|
|
955
|
+
* * `NEW` - Initialized order, no confirmation by the customer.
|
|
956
|
+
* * `CONFIRMED` - Confirmed order, the product has been delivered.
|
|
957
|
+
* * `CANCELLED` - Order has not been processed (ie. failed booking).
|
|
958
|
+
* * `COMPLETED` - Payment has been received.
|
|
959
|
+
* * `ANNULLED` - Order has been annulled and product returned.
|
|
960
|
+
*
|
|
955
961
|
*/
|
|
956
962
|
status: string;
|
|
957
963
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -951,7 +951,13 @@ type paymentDetails = {
|
|
|
951
951
|
*/
|
|
952
952
|
created: string;
|
|
953
953
|
/**
|
|
954
|
-
*
|
|
954
|
+
* Order status.
|
|
955
|
+
* * `NEW` - Initialized order, no confirmation by the customer.
|
|
956
|
+
* * `CONFIRMED` - Confirmed order, the product has been delivered.
|
|
957
|
+
* * `CANCELLED` - Order has not been processed (ie. failed booking).
|
|
958
|
+
* * `COMPLETED` - Payment has been received.
|
|
959
|
+
* * `ANNULLED` - Order has been annulled and product returned.
|
|
960
|
+
*
|
|
955
961
|
*/
|
|
956
962
|
status: string;
|
|
957
963
|
/**
|