index.ts 318 Bytes
export { default as ProductPicker } from './index.vue';

export enum FormFieldsEnum {
  DEVICE_TYPE = 'deviceType',
  DEVICE_PROFILE = 'deviceProfileId',
  ORGANIZATION = 'organizationId',
}

export type ProductCascadePickerValueType = Record<FormFieldsEnum, string>;

export { validateProductPicker } from './utils';