Socket
Socket
Sign inDemoInstall

gd-sprest-def

Package Overview
Dependencies
0
Maintainers
1
Versions
145
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.2.7 to 1.2.8

78

lib/Microsoft/Graph/api.d.ts

@@ -6,3 +6,3 @@ import { IBaseExecution } from "../../base";

export interface invitations extends IBaseExecution<EntityTypes.invitation> {
invitedUser: IBaseExecution<users>;
invitedUser: () => IBaseExecution<users>;
}

@@ -13,10 +13,10 @@ /*********************************************

export interface users extends IBaseExecution<EntityTypes.user> {
createdObjects: IBaseExecution<directoryObjects>;
directReports: IBaseExecution<directoryObjects>;
manager: IBaseExecution<directoryObjects>;
memberOf: IBaseExecution<directoryObjects>;
ownedDevices: IBaseExecution<directoryObjects>;
ownedObjects: IBaseExecution<directoryObjects>;
registeredDevices: IBaseExecution<directoryObjects>;
transitiveMemberOf: IBaseExecution<directoryObjects>;
createdObjects: () => IBaseExecution<directoryObjects>;
directReports: () => IBaseExecution<directoryObjects>;
manager: () => IBaseExecution<directoryObjects>;
memberOf: () => IBaseExecution<directoryObjects>;
ownedDevices: () => IBaseExecution<directoryObjects>;
ownedObjects: () => IBaseExecution<directoryObjects>;
registeredDevices: () => IBaseExecution<directoryObjects>;
transitiveMemberOf: () => IBaseExecution<directoryObjects>;
}

@@ -45,4 +45,4 @@ /*********************************************

export interface applications extends IBaseExecution<EntityTypes.application> {
createdOnBehalfOf: IBaseExecution<directoryObjects>;
owners: IBaseExecution<directoryObjects>;
createdOnBehalfOf: () => IBaseExecution<directoryObjects>;
owners: () => IBaseExecution<directoryObjects>;
}

@@ -59,6 +59,6 @@ /*********************************************

export interface contacts extends IBaseExecution<EntityTypes.orgContact> {
directReports: IBaseExecution<directoryObjects>;
manager: IBaseExecution<directoryObjects>;
memberOf: IBaseExecution<directoryObjects>;
transitiveMemberOf: IBaseExecution<directoryObjects>;
directReports: () => IBaseExecution<directoryObjects>;
manager: () => IBaseExecution<directoryObjects>;
memberOf: () => IBaseExecution<directoryObjects>;
transitiveMemberOf: () => IBaseExecution<directoryObjects>;
}

@@ -75,5 +75,5 @@ /*********************************************

export interface devices extends IBaseExecution<EntityTypes.device> {
registeredOwners: IBaseExecution<directoryObjects>;
registeredUsers: IBaseExecution<directoryObjects>;
transitiveMemberOf: IBaseExecution<directoryObjects>;
registeredOwners: () => IBaseExecution<directoryObjects>;
registeredUsers: () => IBaseExecution<directoryObjects>;
transitiveMemberOf: () => IBaseExecution<directoryObjects>;
}

@@ -90,3 +90,3 @@ /*********************************************

export interface directoryRoles extends IBaseExecution<EntityTypes.directoryRole> {
members: IBaseExecution<directoryObjects>;
members: () => IBaseExecution<directoryObjects>;
}

@@ -109,3 +109,3 @@ /*********************************************

export interface domains extends IBaseExecution<EntityTypes.domain> {
domainNameReferences: IBaseExecution<directoryObjects>;
domainNameReferences: () => IBaseExecution<directoryObjects>;
}

@@ -116,8 +116,8 @@ /*********************************************

export interface groups extends IBaseExecution<EntityTypes.group> {
createdOnBehalfOf: IBaseExecution<directoryObjects>;
memberOf: IBaseExecution<directoryObjects>;
members: IBaseExecution<directoryObjects>;
owners: IBaseExecution<directoryObjects>;
transitiveMemberOf: IBaseExecution<directoryObjects>;
transitiveMembers: IBaseExecution<directoryObjects>;
createdOnBehalfOf: () => IBaseExecution<directoryObjects>;
memberOf: () => IBaseExecution<directoryObjects>;
members: () => IBaseExecution<directoryObjects>;
owners: () => IBaseExecution<directoryObjects>;
transitiveMemberOf: () => IBaseExecution<directoryObjects>;
transitiveMembers: () => IBaseExecution<directoryObjects>;
}

@@ -152,3 +152,3 @@ /*********************************************

export interface organization extends IBaseExecution<EntityTypes.organization> {
certificateBasedAuthConfiguration: IBaseExecution<EntityTypes.certificateBasedAuthConfiguration>;
certificateBasedAuthConfiguration: () => IBaseExecution<EntityTypes.certificateBasedAuthConfiguration>;
}

@@ -171,8 +171,8 @@ /*********************************************

export interface servicePrincipals extends IBaseExecution<EntityTypes.servicePrincipal> {
createdObjects: IBaseExecution<directoryObjects>;
memberOf: IBaseExecution<directoryObjects>;
oauth2PermissionGrants: IBaseExecution<oauth2PermissionGrants>;
ownedObjects: IBaseExecution<directoryObjects>;
owners: IBaseExecution<directoryObjects>;
transitiveMemberOf: IBaseExecution<directoryObjects>;
createdObjects: () => IBaseExecution<directoryObjects>;
memberOf: () => IBaseExecution<directoryObjects>;
oauth2PermissionGrants: () => IBaseExecution<oauth2PermissionGrants>;
ownedObjects: () => IBaseExecution<directoryObjects>;
owners: () => IBaseExecution<directoryObjects>;
transitiveMemberOf: () => IBaseExecution<directoryObjects>;
}

@@ -207,6 +207,6 @@ /*********************************************

export interface sites extends IBaseExecution<EntityTypes.site> {
parentTerm: IBaseExecution<terms>;
termSet: IBaseExecution<sets>;
sharedColumns: IBaseExecution<columns>;
welcomePageColumns: IBaseExecution<columns>;
parentTerm: () => IBaseExecution<terms>;
termSet: () => IBaseExecution<sets>;
sharedColumns: () => IBaseExecution<columns>;
welcomePageColumns: () => IBaseExecution<columns>;
}

@@ -265,4 +265,4 @@ /*********************************************

export interface teams extends IBaseExecution<EntityTypes.team> {
group: IBaseExecution<groups>;
template: IBaseExecution<teamsTemplates>;
group: () => IBaseExecution<groups>;
template: () => IBaseExecution<teamsTemplates>;
}

@@ -269,0 +269,0 @@ /*********************************************

@@ -566,3 +566,3 @@ let fs = require("fs");

// Add the method
methods.push("\t" + method.name + ": IBaseExecution<" + getGraphType(method.returnType) + ">;");
methods.push("\t" + method.name + ": () => IBaseExecution<" + getGraphType(method.returnType) + ">;");
}

@@ -648,3 +648,3 @@

// Add the method
methods.push("\t" + method.name + ": IBaseExecution<" + getGraphType(method.returnType) + ">;");
methods.push("\t" + method.name + ": () => IBaseExecution<" + getGraphType(method.returnType) + ">;");
}

@@ -651,0 +651,0 @@

{
"name": "gd-sprest-def",
"version": "1.2.7",
"version": "1.2.8",
"description": "TypeScript definition files generated from the $metadata REST endpoint in SharePoint.",

@@ -5,0 +5,0 @@ "author": "Gunjan Datta <me@dattabase.com> (https://gunjandatta.github.io)",

Sorry, the diff of this file is too big to display

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