@spiffcommerce/core 36.0.0 → 36.1.0

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.ts CHANGED
@@ -4907,6 +4907,11 @@ declare class OptionService {
4907
4907
  * @returns The default variant for the given option, or undefined if no default variant can be determined.
4908
4908
  */
4909
4909
  getDefaultVariant: (option: OptionResource, overrideDefaultVariantId?: string) => Promise<VariantResource | undefined>;
4910
+ getTagsForAssets: (variants: VariantResource[]) => Promise<{
4911
+ id: string;
4912
+ entityId: string;
4913
+ name: string;
4914
+ }[][]>;
4910
4915
  }
4911
4916
  declare const optionService: OptionService;
4912
4917