@vendure/common 1.4.5 → 1.4.6
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.
|
@@ -2403,7 +2403,7 @@ export declare type Query = {
|
|
|
2403
2403
|
activeCustomer?: Maybe<Customer>;
|
|
2404
2404
|
/**
|
|
2405
2405
|
* The active Order. Will be `null` until an Order is created via `addItemToOrder`. Once an Order reaches the
|
|
2406
|
-
* state of `
|
|
2406
|
+
* state of `PaymentAuthorized` or `PaymentSettled`, then that Order is no longer considered "active" and this
|
|
2407
2407
|
* query will once again return `null`.
|
|
2408
2408
|
*/
|
|
2409
2409
|
activeOrder?: Maybe<Order>;
|
|
@@ -2411,7 +2411,7 @@ export declare type Query = {
|
|
|
2411
2411
|
availableCountries: Array<Country>;
|
|
2412
2412
|
/** A list of Collections available to the shop */
|
|
2413
2413
|
collections: CollectionList;
|
|
2414
|
-
/** Returns a Collection either by its id or slug. If neither 'id' nor 'slug' is
|
|
2414
|
+
/** Returns a Collection either by its id or slug. If neither 'id' nor 'slug' is specified, an error will result. */
|
|
2415
2415
|
collection?: Maybe<Collection>;
|
|
2416
2416
|
/** Returns a list of eligible shipping methods based on the current active Order */
|
|
2417
2417
|
eligibleShippingMethods: Array<ShippingMethodQuote>;
|
package/lib/generated-types.d.ts
CHANGED
|
@@ -3534,7 +3534,7 @@ export declare type Query = {
|
|
|
3534
3534
|
channel?: Maybe<Channel>;
|
|
3535
3535
|
activeChannel: Channel;
|
|
3536
3536
|
collections: CollectionList;
|
|
3537
|
-
/** Get a Collection either by id or slug. If neither id nor slug is
|
|
3537
|
+
/** Get a Collection either by id or slug. If neither id nor slug is specified, an error will result. */
|
|
3538
3538
|
collection?: Maybe<Collection>;
|
|
3539
3539
|
collectionFilters: Array<ConfigurableOperationDefinition>;
|
|
3540
3540
|
countries: CountryList;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vendure/common",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.6",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"rimraf": "^3.0.2",
|
|
23
23
|
"typescript": "4.3.5"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "9cf2a309e4b96bda6200279ba9a9d93950511438"
|
|
26
26
|
}
|