@atlaskit/linking-types
Advanced tools
Comparing version 8.4.0 to 8.5.0
# @atlaskit/linking-types | ||
## 8.5.0 | ||
### Minor Changes | ||
- [#42504](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42504) [`8ee7afb2d85`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8ee7afb2d85) - Added DatasourceDataSchema model. | ||
Used fields in the request for applying schema. | ||
## 8.4.0 | ||
@@ -4,0 +11,0 @@ |
@@ -19,3 +19,3 @@ "use strict"; | ||
*/ | ||
var SmartLinkActionType = /*#__PURE__*/function (SmartLinkActionType) { | ||
var SmartLinkActionType = exports.SmartLinkActionType = /*#__PURE__*/function (SmartLinkActionType) { | ||
SmartLinkActionType["FollowEntityAction"] = "FollowEntityAction"; | ||
@@ -45,4 +45,3 @@ SmartLinkActionType["GetStatusTransitionsAction"] = "GetStatusTransitionsAction"; | ||
*/ | ||
exports.SmartLinkActionType = SmartLinkActionType; | ||
var InvokeError = /*#__PURE__*/function (_Error) { | ||
var InvokeError = exports.InvokeError = /*#__PURE__*/function (_Error) { | ||
(0, _inherits2.default)(InvokeError, _Error); | ||
@@ -58,3 +57,2 @@ var _super = _createSuper(InvokeError); | ||
return (0, _createClass2.default)(InvokeError); | ||
}( /*#__PURE__*/(0, _wrapNativeSuper2.default)(Error)); | ||
exports.InvokeError = InvokeError; | ||
}( /*#__PURE__*/(0, _wrapNativeSuper2.default)(Error)); |
@@ -123,16 +123,18 @@ export interface BooleanType { | ||
parameters: DatasourceResponseParameter[]; | ||
schema: { | ||
defaultProperties: string[]; | ||
properties: DatasourceResponseSchemaProperty[]; | ||
}; | ||
schema: DatasourceDetailsSchema; | ||
}; | ||
export type DatasourceData = { | ||
items: DatasourceDataResponseItem[]; | ||
schema?: { | ||
properties: DatasourceResponseSchemaProperty[]; | ||
defaultProperties?: string[]; | ||
}; | ||
schema?: DatasourceDataSchema; | ||
nextPageCursor?: string; | ||
totalCount?: number; | ||
}; | ||
export type DatasourceDataSchema = { | ||
properties: DatasourceResponseSchemaProperty[]; | ||
defaultProperties?: string[]; | ||
}; | ||
export type DatasourceDetailsSchema = { | ||
properties: DatasourceResponseSchemaProperty[]; | ||
defaultProperties: string[]; | ||
}; | ||
export type DatasourceMeta = { | ||
@@ -139,0 +141,0 @@ access: Access; |
@@ -1,3 +0,3 @@ | ||
export type { Access, AuthService, BooleanType, DatasourceData, DatasourceDataRequest, DatasourceDataResponse, DatasourceDataResponseItem, DatasourceDetails, DatasourceDetailsRequest, DatasourceDetailsResponse, DatasourceMeta, DatasourceParameters, DatasourceResponseParameter, DatasourceResponseSchemaProperty, DatasourceTableStatusType, DatasourceType, DateTimeType, DateType, Icon, IconType, Link, LinkType, NumberType, RichText, RichTextType, Status, StatusType, StringType, Tag, TagType, TimeType, User, UserType, Visibility, } from './datasource-types'; | ||
export type { Access, AuthService, BooleanType, DatasourceData, DatasourceDataRequest, DatasourceDataResponse, DatasourceDataResponseItem, DatasourceDetails, DatasourceDetailsRequest, DatasourceDetailsResponse, DatasourceDataSchema, DatasourceDetailsSchema, DatasourceMeta, DatasourceParameters, DatasourceResponseParameter, DatasourceResponseSchemaProperty, DatasourceTableStatusType, DatasourceType, DateTimeType, DateType, Icon, IconType, Link, LinkType, NumberType, RichText, RichTextType, Status, StatusType, StringType, Tag, TagType, TimeType, User, UserType, Visibility, } from './datasource-types'; | ||
export type { InvokeRequest, InvokeRequestAction, StatusUpdateActionPayload, InvokeResponse, InvokeErrorResponse, GetStatusTransitionsInvokeResponse, } from './smart-link-action-types'; | ||
export { SmartLinkActionType, InvokeError } from './smart-link-action-types'; |
@@ -123,16 +123,18 @@ export interface BooleanType { | ||
parameters: DatasourceResponseParameter[]; | ||
schema: { | ||
defaultProperties: string[]; | ||
properties: DatasourceResponseSchemaProperty[]; | ||
}; | ||
schema: DatasourceDetailsSchema; | ||
}; | ||
export type DatasourceData = { | ||
items: DatasourceDataResponseItem[]; | ||
schema?: { | ||
properties: DatasourceResponseSchemaProperty[]; | ||
defaultProperties?: string[]; | ||
}; | ||
schema?: DatasourceDataSchema; | ||
nextPageCursor?: string; | ||
totalCount?: number; | ||
}; | ||
export type DatasourceDataSchema = { | ||
properties: DatasourceResponseSchemaProperty[]; | ||
defaultProperties?: string[]; | ||
}; | ||
export type DatasourceDetailsSchema = { | ||
properties: DatasourceResponseSchemaProperty[]; | ||
defaultProperties: string[]; | ||
}; | ||
export type DatasourceMeta = { | ||
@@ -139,0 +141,0 @@ access: Access; |
@@ -1,3 +0,3 @@ | ||
export type { Access, AuthService, BooleanType, DatasourceData, DatasourceDataRequest, DatasourceDataResponse, DatasourceDataResponseItem, DatasourceDetails, DatasourceDetailsRequest, DatasourceDetailsResponse, DatasourceMeta, DatasourceParameters, DatasourceResponseParameter, DatasourceResponseSchemaProperty, DatasourceTableStatusType, DatasourceType, DateTimeType, DateType, Icon, IconType, Link, LinkType, NumberType, RichText, RichTextType, Status, StatusType, StringType, Tag, TagType, TimeType, User, UserType, Visibility, } from './datasource-types'; | ||
export type { Access, AuthService, BooleanType, DatasourceData, DatasourceDataRequest, DatasourceDataResponse, DatasourceDataResponseItem, DatasourceDetails, DatasourceDetailsRequest, DatasourceDetailsResponse, DatasourceDataSchema, DatasourceDetailsSchema, DatasourceMeta, DatasourceParameters, DatasourceResponseParameter, DatasourceResponseSchemaProperty, DatasourceTableStatusType, DatasourceType, DateTimeType, DateType, Icon, IconType, Link, LinkType, NumberType, RichText, RichTextType, Status, StatusType, StringType, Tag, TagType, TimeType, User, UserType, Visibility, } from './datasource-types'; | ||
export type { InvokeRequest, InvokeRequestAction, StatusUpdateActionPayload, InvokeResponse, InvokeErrorResponse, GetStatusTransitionsInvokeResponse, } from './smart-link-action-types'; | ||
export { SmartLinkActionType, InvokeError } from './smart-link-action-types'; |
{ | ||
"name": "@atlaskit/linking-types", | ||
"version": "8.4.0", | ||
"version": "8.5.0", | ||
"description": "Schema and Types for frontend and backend parts of linking platform", | ||
@@ -5,0 +5,0 @@ "author": "Atlassian Pty Ltd", |
@@ -42,6 +42,3 @@ <!-- API Report Version: 2.3 --> | ||
items: DatasourceDataResponseItem[]; | ||
schema?: { | ||
properties: DatasourceResponseSchemaProperty[]; | ||
defaultProperties?: string[]; | ||
}; | ||
schema?: DatasourceDataSchema; | ||
nextPageCursor?: string; | ||
@@ -78,2 +75,8 @@ totalCount?: number; | ||
// @public (undocumented) | ||
export type DatasourceDataSchema = { | ||
properties: DatasourceResponseSchemaProperty[]; | ||
defaultProperties?: string[]; | ||
}; | ||
// @public (undocumented) | ||
export type DatasourceDetails = { | ||
@@ -85,6 +88,3 @@ ari: string; | ||
parameters: DatasourceResponseParameter[]; | ||
schema: { | ||
defaultProperties: string[]; | ||
properties: DatasourceResponseSchemaProperty[]; | ||
}; | ||
schema: DatasourceDetailsSchema; | ||
}; | ||
@@ -102,2 +102,8 @@ | ||
// @public (undocumented) | ||
export type DatasourceDetailsSchema = { | ||
properties: DatasourceResponseSchemaProperty[]; | ||
defaultProperties: string[]; | ||
}; | ||
// @public (undocumented) | ||
export type DatasourceMeta = { | ||
@@ -104,0 +110,0 @@ access: Access; |
@@ -31,6 +31,3 @@ ## API Report File for "@atlaskit/linking-types" | ||
items: DatasourceDataResponseItem[]; | ||
schema?: { | ||
properties: DatasourceResponseSchemaProperty[]; | ||
defaultProperties?: string[]; | ||
}; | ||
schema?: DatasourceDataSchema; | ||
nextPageCursor?: string; | ||
@@ -67,2 +64,8 @@ totalCount?: number; | ||
// @public (undocumented) | ||
export type DatasourceDataSchema = { | ||
properties: DatasourceResponseSchemaProperty[]; | ||
defaultProperties?: string[]; | ||
}; | ||
// @public (undocumented) | ||
export type DatasourceDetails = { | ||
@@ -74,6 +77,3 @@ ari: string; | ||
parameters: DatasourceResponseParameter[]; | ||
schema: { | ||
defaultProperties: string[]; | ||
properties: DatasourceResponseSchemaProperty[]; | ||
}; | ||
schema: DatasourceDetailsSchema; | ||
}; | ||
@@ -91,2 +91,8 @@ | ||
// @public (undocumented) | ||
export type DatasourceDetailsSchema = { | ||
properties: DatasourceResponseSchemaProperty[]; | ||
defaultProperties: string[]; | ||
}; | ||
// @public (undocumented) | ||
export type DatasourceMeta = { | ||
@@ -93,0 +99,0 @@ access: Access; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
47747
943