Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@atlaskit/linking-types

Package Overview
Dependencies
Maintainers
0
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atlaskit/linking-types - npm Package Compare versions

Comparing version 9.2.0 to 9.3.0

8

CHANGELOG.md
# @atlaskit/linking-types
## 9.3.0
### Minor Changes
- [#157343](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/157343)
[`64cef773c3dcf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/64cef773c3dcf) -
EDM-10952 Update AtomicActionInterface with supportingActions
## 9.2.0

@@ -4,0 +12,0 @@

4

dist/cjs/datasource-action-types.js

@@ -8,2 +8,6 @@ "use strict";

// Discovery
/**
* Information received from ORS about the a given input type and the
* actions that can be applied to it.
*/
// Execution

@@ -10,0 +14,0 @@ var ActionOperationStatus = exports.ActionOperationStatus = /*#__PURE__*/function (ActionOperationStatus) {

// Discovery
/**
* Information received from ORS about the a given input type and the
* actions that can be applied to it.
*/
// Execution

@@ -4,0 +9,0 @@

// Discovery
/**
* Information received from ORS about the a given input type and the
* actions that can be applied to it.
*/
// Execution

@@ -4,0 +9,0 @@

@@ -22,7 +22,34 @@ interface ActionsDiscoveryInterface {

integrationKey: string;
/**
* To be sent to actions-service to execute an action
* eg: atlassian:work-item:update:summary
*/
actionKey: string;
/**
* To identify the actionable column in FE.
* Should be the same as the last word in `actionKey`.
*/
fieldKey: string;
/**
* types the field value can take
*/
type: 'string' | 'number';
description?: string;
/**
* The inputs required to execute the action
*/
inputs?: ActionInputs;
}
type ActionInputs = {
[key: string]: ActionInput;
};
/**
* Information received from ORS about the a given input type and the
* actions that can be applied to it.
*/
type ActionInput = {
type: 'string' | 'number';
description?: string;
fetchAction?: AtomicActionInterface;
};
export interface ActionsServiceDiscoveryResponse {

@@ -29,0 +56,0 @@ actions: AtomicActionInterface[];

@@ -22,7 +22,34 @@ interface ActionsDiscoveryInterface {

integrationKey: string;
/**
* To be sent to actions-service to execute an action
* eg: atlassian:work-item:update:summary
*/
actionKey: string;
/**
* To identify the actionable column in FE.
* Should be the same as the last word in `actionKey`.
*/
fieldKey: string;
/**
* types the field value can take
*/
type: 'string' | 'number';
description?: string;
/**
* The inputs required to execute the action
*/
inputs?: ActionInputs;
}
type ActionInputs = {
[key: string]: ActionInput;
};
/**
* Information received from ORS about the a given input type and the
* actions that can be applied to it.
*/
type ActionInput = {
type: 'string' | 'number';
description?: string;
fetchAction?: AtomicActionInterface;
};
export interface ActionsServiceDiscoveryResponse {

@@ -29,0 +56,0 @@ actions: AtomicActionInterface[];

2

package.json
{
"name": "@atlaskit/linking-types",
"version": "9.2.0",
"version": "9.3.0",
"description": "Schema and Types for frontend and backend parts of linking platform",

@@ -5,0 +5,0 @@ "author": "Atlassian Pty Ltd",

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc