@socialgouv/cdtn-utils 4.109.0 → 4.110.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/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [4.110.0](https://github.com/SocialGouv/code-du-travail-numerique/compare/v4.109.0...v4.110.0) (2023-10-16)
7
+
8
+ ### Features
9
+
10
+ - ajout des conventions collectives sans page legifrance ([#5373](https://github.com/SocialGouv/code-du-travail-numerique/issues/5373)) ([605a0f9](https://github.com/SocialGouv/code-du-travail-numerique/commit/605a0f9fc8ebb12a5c621675e563779d1ab58da5))
11
+
6
12
  # [4.109.0](https://github.com/SocialGouv/code-du-travail-numerique/compare/v4.108.1...v4.109.0) (2023-10-05)
7
13
 
8
14
  **Note:** Version bump only for package @socialgouv/cdtn-utils
package/build/types.d.ts CHANGED
@@ -130,6 +130,7 @@ export type Agreement = {
130
130
  content: string;
131
131
  searchInfo?: string;
132
132
  };
133
+ contributions: boolean;
133
134
  };
134
135
  export type ElasticSearchItem = {
135
136
  description: string;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public",
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
7
- "version": "4.109.0",
7
+ "version": "4.110.0",
8
8
  "main": "build/index.js",
9
9
  "module": "build/index.js",
10
10
  "types": "build/index.d.ts",
@@ -19,5 +19,5 @@
19
19
  "jest": "^29.4.3",
20
20
  "typescript": "^5.0.4"
21
21
  },
22
- "gitHead": "585be858c744c055a7e570e6ed0b159a14dcabdd"
22
+ "gitHead": "e692c1d06ffb1b7137318cc56064cbb706f5752d"
23
23
  }
package/src/types.ts CHANGED
@@ -150,6 +150,7 @@ export type Agreement = {
150
150
  content: string;
151
151
  searchInfo?: string;
152
152
  };
153
+ contributions: boolean;
153
154
  };
154
155
 
155
156
  export type ElasticSearchItem = {