diff --git a/apps/api/src/environments/environment.ts b/apps/api/src/environments/environment.ts index af247c1b8b..e6128f3e17 100644 --- a/apps/api/src/environments/environment.ts +++ b/apps/api/src/environments/environment.ts @@ -426,7 +426,7 @@ export const environment: IEnvironment = { name: 'Physical Products', description: 'Can be touched or tangible, solid, dust or liquid state in a container.', - icon: ProductTypesIconsEnum.RADIO_BTN_OFF, + icon: ProductTypesIconsEnum.CHECKMARK, }, { name: 'Digital Products', @@ -450,12 +450,12 @@ export const environment: IEnvironment = { name: 'Supplies', description: 'Items purchased and typically used up during the year.', - icon: ProductTypesIconsEnum.SETTINGS, + icon: ProductTypesIconsEnum.SHOPPING_CART, }, { name: 'Experiences', description: 'Knowledge or skill in a particular job or activity', - icon: ProductTypesIconsEnum.STAR, + icon: ProductTypesIconsEnum.LAYERS, }, { name: 'Specialty Goods', @@ -470,7 +470,19 @@ export const environment: IEnvironment = { { name: 'Industrial goods', description: 'Bought and used for industrial and business use', - icon: ProductTypesIconsEnum.HOME, + icon: ProductTypesIconsEnum.RADIO_BTN_OFF, + }, + { + name: 'Amenities', + description: + 'Any feature that provides comfort, convenience, or pleasure', + icon: ProductTypesIconsEnum.STAR, + }, + { + name: 'Animals', + description: + 'Animals consume organic material, breathe oxygen, are able to move', + icon: ProductTypesIconsEnum.HEART, }, ], defaultProductCategories: [ @@ -532,6 +544,12 @@ export const environment: IEnvironment = { 'Used to make a room or building suitable for living or working in', imageUrl: 'assets/images/products/furniture.png', }, + { + name: 'Pets', + description: + "An animal kept primarily for a person's company or entertainment rather than as a working animal", + imageUrl: 'assets/images/products/dog.png', + }, ], sentry: { dns: 'https://19293d39eaa14d03aac4d3c156c4d30e@sentry.io/4397292', diff --git a/apps/gauzy/src/assets/images/products/dog.png b/apps/gauzy/src/assets/images/products/dog.png new file mode 100644 index 0000000000..5fa25863a7 Binary files /dev/null and b/apps/gauzy/src/assets/images/products/dog.png differ diff --git a/libs/models/src/lib/product.model.ts b/libs/models/src/lib/product.model.ts index c964aec32e..32257d30ca 100644 --- a/libs/models/src/lib/product.model.ts +++ b/libs/models/src/lib/product.model.ts @@ -92,4 +92,12 @@ export enum ProductTypesIconsEnum { STAR = 'star-outline', SHOPPING_BAG = 'shopping-bag-outline', SHARE = 'share-outline', + ACTIVITY = 'activity-outline', + ALERT = 'alert-triangle-outline', + BULB = 'bulb-outline', + CHECKMARK = 'checkmark-circle-outline', + GLOBE = 'globe-2-outline', + LAYERS = 'layers-outline', + PHONE = 'phone-outline', + SHOPPING_CART = 'shopping-cart-outline', }