contentful-management 11.43.1 → 11.43.2

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.
@@ -46,7 +46,7 @@ function createClient(params, opts = {}) {
46
46
  const sdkMain = opts.type === 'plain' ? 'contentful-management-plain.js' : 'contentful-management.js';
47
47
  const userAgent = getUserAgentHeader(
48
48
  // @ts-expect-error
49
- `${sdkMain}/${"11.43.1"}`, params.application, params.integration, params.feature);
49
+ `${sdkMain}/${"11.43.2"}`, params.application, params.integration, params.feature);
50
50
  const adapter = createAdapter(_objectSpread(_objectSpread({}, params), {}, {
51
51
  userAgent
52
52
  }));
@@ -152,7 +152,7 @@ export interface EntityMetaSysProps extends MetaSysProps {
152
152
  firstPublishedAt?: string;
153
153
  publishedCounter?: number;
154
154
  locale?: string;
155
- fieldStatus: {
155
+ fieldStatus?: {
156
156
  '*': Record<string, 'draft' | 'changed' | 'published'>;
157
157
  };
158
158
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contentful-management",
3
- "version": "11.43.1",
3
+ "version": "11.43.2",
4
4
  "description": "Client for Contentful's Content Management API",
5
5
  "homepage": "https://www.contentful.com/developers/documentation/content-management-api/",
6
6
  "main": "./dist/contentful-management.node.js",