@sap-ux/vocabularies-types
Advanced tools
Comparing version 0.10.4 to 0.10.5
@@ -8,2 +8,5 @@ export type SimpleIdentifier = string; | ||
}; | ||
type ArrayWithType<T, K> = T[] & { | ||
type?: K; | ||
}; | ||
export type Apply = any; | ||
@@ -51,3 +54,3 @@ export type If = any; | ||
export type Expression = NullExpression | UnknownExpression | StringExpression | BoolExpression | DecimalExpression | FloatExpression | IntExpression | DateExpression | PathExpression | PropertyPathExpression | AnnotationPathExpression | NavigationPropertyPathExpression | EnumMemberExpression | CollectionExpression | RecordExpression | ApplyExpression | IfExpression | AndExpression | OrExpression | EqExpression | NotExpression | NeExpression | GtExpression | GeExpression | LtExpression | LeExpression; | ||
export type Collection = AnnotationRecord[] | StringExpression[] | PropertyPathExpression[] | PathExpression[] | NavigationPropertyPathExpression[] | AnnotationPathExpression[]; | ||
export type Collection = ArrayWithType<AnnotationRecord, 'Record'> | ArrayWithType<StringExpression, 'String'> | ArrayWithType<PropertyPathExpression, 'PropertyPath'> | ArrayWithType<PathExpression, 'Path'> | ArrayWithType<NavigationPropertyPathExpression, 'NavigationPropertyPath'> | ArrayWithType<AnnotationPathExpression, 'AnnotationPath'> | ArrayWithType<EnumMemberExpression, 'EnumMember'> | ArrayWithType<BoolExpression, 'Bool'> | ArrayWithType<DecimalExpression, 'Decimal'> | ArrayWithType<DateExpression, 'Date'> | ArrayWithType<IntExpression, 'Int'> | ArrayWithType<FloatExpression, 'Float'> | ArrayWithType<ApplyExpression, 'Apply'> | ArrayWithType<NullExpression, 'Null'> | ArrayWithType<IfExpression, 'If'> | ArrayWithType<AndExpression, 'And'> | ArrayWithType<OrExpression, 'Or'> | ArrayWithType<EqExpression, 'Eq'> | ArrayWithType<NotExpression, 'Not'> | ArrayWithType<NeExpression, 'Ne'> | ArrayWithType<GtExpression, 'Gt'> | ArrayWithType<GeExpression, 'Ge'> | ArrayWithType<LtExpression, 'Lt'> | ArrayWithType<LeExpression, 'Le'>; | ||
export type AnnotationList = { | ||
@@ -54,0 +57,0 @@ target: FullyQualifiedName; |
{ | ||
"name": "@sap-ux/vocabularies-types", | ||
"version": "0.10.4", | ||
"version": "0.10.5", | ||
"description": "SAP Fiori OData - TS types for vocabularies", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -73,2 +73,6 @@ import * as Core from "./Core"; | ||
/** | ||
Whether the sibling of a root can be changed | ||
*/ | ||
ChangeSiblingForRootsSupported: Edm.Boolean; | ||
/** | ||
Action that copies a node and its descendants, following [this template](#Template_CopyAction) | ||
@@ -75,0 +79,0 @@ */ |
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
709466
14993