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

@sap-ux/vocabularies-types

Package Overview
Dependencies
Maintainers
3
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sap-ux/vocabularies-types - npm Package Compare versions

Comparing version 0.10.4 to 0.10.5

5

BaseEdm.d.ts

@@ -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;

2

package.json
{
"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 @@ */

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