@open-tender/types 0.2.37 → 0.2.38
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.
|
@@ -8,6 +8,6 @@ export interface Allergen {
|
|
|
8
8
|
export declare type Allergens = Allergen[];
|
|
9
9
|
export declare type AllergenLookup = Record<string, Allergen>;
|
|
10
10
|
export interface AllergenEnhanced extends Omit<Allergen, 'images'> {
|
|
11
|
-
|
|
11
|
+
imageUrl: string;
|
|
12
12
|
}
|
|
13
13
|
export declare type AllergenLookupEnhanced = Record<string, AllergenEnhanced>;
|
|
@@ -8,6 +8,6 @@ export interface Tag {
|
|
|
8
8
|
export declare type Tags = Tag[];
|
|
9
9
|
export declare type TagLookup = Record<string, Tag>;
|
|
10
10
|
export interface TagEnhanced extends Omit<Tag, 'images'> {
|
|
11
|
-
|
|
11
|
+
imageUrl: string;
|
|
12
12
|
}
|
|
13
13
|
export declare type TagLookupEnhanced = Record<string, TagEnhanced>;
|
|
@@ -8,6 +8,6 @@ export interface Allergen {
|
|
|
8
8
|
export declare type Allergens = Allergen[];
|
|
9
9
|
export declare type AllergenLookup = Record<string, Allergen>;
|
|
10
10
|
export interface AllergenEnhanced extends Omit<Allergen, 'images'> {
|
|
11
|
-
|
|
11
|
+
imageUrl: string;
|
|
12
12
|
}
|
|
13
13
|
export declare type AllergenLookupEnhanced = Record<string, AllergenEnhanced>;
|
|
@@ -8,6 +8,6 @@ export interface Tag {
|
|
|
8
8
|
export declare type Tags = Tag[];
|
|
9
9
|
export declare type TagLookup = Record<string, Tag>;
|
|
10
10
|
export interface TagEnhanced extends Omit<Tag, 'images'> {
|
|
11
|
-
|
|
11
|
+
imageUrl: string;
|
|
12
12
|
}
|
|
13
13
|
export declare type TagLookupEnhanced = Record<string, TagEnhanced>;
|
package/package.json
CHANGED