@isardsat/editorial-client 6.8.0 → 6.9.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
@@ -1,5 +1,24 @@
1
1
  # @isardsat/editorial-client
2
2
 
3
+ ## 6.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 1a359f9: Fixes
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [1a359f9]
12
+ - @isardsat/editorial-common@6.9.0
13
+
14
+ ## 6.8.1
15
+
16
+ ### Patch Changes
17
+
18
+ - 5d48cdb: Fix validation issues
19
+ - Updated dependencies [5d48cdb]
20
+ - @isardsat/editorial-common@6.8.1
21
+
3
22
  ## 6.8.0
4
23
 
5
24
  ### Minor Changes
package/dist/types.d.ts CHANGED
@@ -6,7 +6,9 @@ export interface ClientOptions {
6
6
  timeout?: number;
7
7
  }
8
8
  export interface GetContentOptions {
9
+ /** Filter content by locale/language code */
9
10
  locale?: string;
11
+ /** Include preview/draft content in the response */
10
12
  preview?: boolean;
11
13
  }
12
14
  export interface EditorialClientInterface {
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@isardsat/editorial-client",
3
- "version": "6.8.0",
3
+ "version": "6.9.0",
4
4
  "description": "JavaScript client for the Editorial CMS API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "type": "module",
8
8
  "dependencies": {
9
- "@isardsat/editorial-common": "6.8.0"
9
+ "@isardsat/editorial-common": "6.9.0"
10
10
  },
11
11
  "devDependencies": {
12
12
  "@tsconfig/node22": "^22.0.0",
package/src/types.ts CHANGED
@@ -14,7 +14,9 @@ export interface ClientOptions {
14
14
  }
15
15
 
16
16
  export interface GetContentOptions {
17
+ /** Filter content by locale/language code */
17
18
  locale?: string;
19
+ /** Include preview/draft content in the response */
18
20
  preview?: boolean;
19
21
  }
20
22