@vendure/admin-ui 3.1.3 → 3.1.4
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/core/common/generated-types.d.ts +1 -0
- package/core/common/version.d.ts +1 -1
- package/esm2022/core/common/generated-types.mjs +1 -1
- package/esm2022/core/common/version.mjs +2 -2
- package/esm2022/core/core.module.mjs +8 -6
- package/fesm2022/vendure-admin-ui-core.mjs +8 -6
- package/fesm2022/vendure-admin-ui-core.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -831,6 +831,7 @@ export type CreateProductOptionInput = {
|
|
|
831
831
|
export type CreateProductVariantInput = {
|
|
832
832
|
assetIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
833
833
|
customFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
834
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
834
835
|
facetValueIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
835
836
|
featuredAssetId?: InputMaybe<Scalars['ID']['input']>;
|
|
836
837
|
optionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
package/core/common/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const ADMIN_UI_VERSION = "3.1.
|
|
1
|
+
export declare const ADMIN_UI_VERSION = "3.1.4";
|