Socket
Socket
Sign inDemoInstall

@kontent-ai/management-sdk

Package Overview
Dependencies
11
Maintainers
0
Versions
28
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install
Previous13Next

5.6.0

Diff

Changelog

Source

5.6.0 (2023-11-16)

Features

  • updates deps (updated core-sdk with latest axios), updates node to be >= 16 (5fca107)
enngage
published 5.5.0 •

Changelog

Source

5.5.0 (2023-11-01)

Features

  • Adds support for fetching assets by codename (fixes https://github.com/kontent-ai/management-sdk-js/issues/124) (6ee4603)
  • updates deps (42cc023)
enngage
published 5.4.0 •

Changelog

Source

5.4.0 (2023-10-24)

Features

Bug Fixes

  • Change modify asset folders value not required (#123) (d4714c7)
enngage
published 5.3.0 •

Changelog

Source

5.3.0 (2023-09-07)

Features

  • Adds codename & collection support for assets (fixes https://github.com/kontent-ai/management-sdk-js/issues/122) (f08684f)
  • updates deps (a81784b)
enngage
published 5.2.0 •

Changelog

Source

5.2.0 (2023-07-31)

Features

  • updates '@kontent-ai/core-sdk' dependency (4616d3b)
enngage
published 5.1.0 •

Changelog

Source

5.1.0 (2023-07-31)

Features

  • adds 'scheduled_step' property to workflow (fixes https://github.com/kontent-ai/management-sdk-js/issues/116) (9a5d161)
  • adds support 'external_id' property when referencing content type in new content items (fixes https://github.com/kontent-ai/management-sdk-js/issues/119) (4ced950)
  • adds support for 'getPreviewConfiguration' API endpoint (https://github.com/kontent-ai/management-sdk-js/issues/95) (6f8c7a5)
  • adds support for 'modifyPreviewConfiguration' query (https://github.com/kontent-ai/management-sdk-js/issues/95) (2baa8ff)
  • updates all dependencies & migrates to eslint from tslint (15dcc29)

Bug Fixes

  • fixes mapping of enable & disable webhook responses which causes exception to occur (21ecdda)
  • ITaxonomy element data is missing name property #113 (#114) (d07b457)
  • makes 'codename' in url slug element optional (fixes https://github.com/kontent-ai/management-sdk-js/issues/118) (751c445)
  • makes id in multiple choice option non-required (fixes https://github.com/kontent-ai/management-sdk-js/issues/117) (2d9143b)
  • typo (#112) (066b363)
enngage
published 5.0.0 •

Changelog

Source

5.0.0 (2023-04-12)

⚠ BREAKING CHANGES

  • Renames all project related properties & types & queries to reflect new environment naming conventions, also removes deprecated validateProject query

Features

  • Adds support for spaces & adds null support for regex flag (#109) (d11e5f1)
  • Renames all project related properties & types & queries to reflect new environment naming conventions, also removes deprecated validateProject query (e99f007)
  • updates dependencies (788779b)
  • updates dependencies (bdaa2c7)
enngage
published 4.1.0 •

Changelog

Source

4.1.0 (2023-03-08)

Features

  • Add spaces support (#105) (d765d45), closes #104
  • Adds id field to IAddContentItemPostCOntract and makes id and codename nullable (#101) (14cd7ae)
  • adds support for limiting workflows to collections (https://github.com/kontent-ai/management-sdk-js/issues/96) (bcbdde7)
  • Unifies shared elements models (#100) (3a59a45)
  • updates deps (26ba21e)
enngage
published 4.0.0 •

Changelog

Source

4.0.0 (2023-01-18)

⚠ BREAKING CHANGES

  • Adds ability to specify workflow in upsertLanguageVariant query (#93)

Updated way of using the upsertLanguageVariant is:

import { ManagementClient } from '@kontent-ai/management-sdk';

const client = new ManagementClient({
  environmentId: '<YOUR_PROJECT_ID>',
  apiKey: '<YOUR_API_KEY>'
});

const response = await client
    .upsertLanguageVariant()
    .byItemCodename('x')
    .byLanguageCodename('x')
    .withData((builder) => {
        return {
            elements: [
                builder.textElement({
                    element: {
                        codename: 'xElementCodename'
                    },
                    value: 'xText'
                }),
            ],
            workflow: {
                step_identifier: {
                    codename: 'y'
                },
                workflow_identifier: {
                    codename: 'x'
                }
            }
        }
    })
    .toPromise();

Features

  • Add workflow to upsert variant (#93) (9472209)
  • remove is_non_localizable property from unsupported type elements in MAPI (561583c)
  • Update dependencies (#98) (8e31e20)
enngage
published 3.4.0 •

Changelog

Source

3.4.0 (2022-10-03)

Features

Bug Fixes

  • Fixes mapping of type & variant issue types in new validation endpoint (fixes https://github.com/kontent-ai/management-sdk-js/issues/87) (5e02276)
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc