@vendure/common
Advanced tools
Comparing version 0.1.2-beta.6 to 0.1.2-beta.7
@@ -1093,5 +1093,6 @@ export declare type Maybe<T> = T | null; | ||
updatedAt: Scalars['DateTime']; | ||
languageCode?: Maybe<LanguageCode>; | ||
code?: Maybe<Scalars['String']>; | ||
name?: Maybe<Scalars['String']>; | ||
languageCode: LanguageCode; | ||
code: Scalars['String']; | ||
name: Scalars['String']; | ||
groupId: Scalars['ID']; | ||
translations: Array<ProductOptionTranslation>; | ||
@@ -1098,0 +1099,0 @@ customFields?: Maybe<Scalars['JSON']>; |
@@ -12,2 +12,5 @@ "use strict"; | ||
function generateAllCombinations(optionGroups, combination = [], k = 0, output = []) { | ||
if (k === 0) { | ||
optionGroups = optionGroups.filter(g => 0 < g.length); | ||
} | ||
if (k === optionGroups.length) { | ||
@@ -14,0 +17,0 @@ output.push(combination); |
{ | ||
"name": "@vendure/common", | ||
"version": "0.1.2-beta.6", | ||
"version": "0.1.2-beta.7", | ||
"main": "index.js", | ||
@@ -21,3 +21,3 @@ "license": "MIT", | ||
}, | ||
"gitHead": "bc5eec076780791d3645baf75ecfa0d3e210eea5" | ||
"gitHead": "884c8c262ff949459517675ea7c5a8a1444947dc" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
173948
4986