@la-main-verte/shared-types 1.0.41 → 1.0.42

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@la-main-verte/shared-types",
3
- "version": "1.0.41",
3
+ "version": "1.0.42",
4
4
  "description": "Shared TypeScript interfaces for frontend of la-main-verte app",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -19,7 +19,7 @@ export namespace PLANTS {
19
19
  /**
20
20
  * Response containing recommended plants with their tags
21
21
  */
22
- export type Response = readonly PlantExtendedDataI[]
22
+ export type Response = PlantExtendedDataI[]
23
23
  }
24
24
  export namespace SEARCH {
25
25
  /**
@@ -42,6 +42,6 @@ export namespace PLANTS {
42
42
  /**
43
43
  * Response containing search plants with their tags
44
44
  */
45
- export type Response = readonly PlantExtendedDataI[]
45
+ export type Response = PlantExtendedDataI[]
46
46
  }
47
47
  }