Socket
Socket
Sign inDemoInstall

@microsoft/msgraph-beta-sdk-privilegedroles

Package Overview
Dependencies
Maintainers
0
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@microsoft/msgraph-beta-sdk-privilegedroles - npm Package Compare versions

Comparing version 1.0.0-preview.23 to 1.0.0-preview.24

4

package.json
{
"name": "@microsoft/msgraph-beta-sdk-privilegedroles",
"version": "1.0.0-preview.23",
"version": "1.0.0-preview.24",
"description": "PrivilegedRoles fluent API for Microsoft Graph",

@@ -45,3 +45,3 @@ "keywords": [

"type": "module",
"gitHead": "b8a2b5fdd0eaaf6f9df2f99705587b7386e7110a"
"gitHead": "c2d1fa14fdfd0ef4ff3bea6e9bc000073d21e346"
}

@@ -22,19 +22,19 @@ import { type PrivilegedRoleAssignment } from '@microsoft/msgraph-beta-sdk/models/index.js';

*/
backingStoreEnabled?: boolean;
backingStoreEnabled?: boolean | null;
/**
* The duration property
*/
duration?: string;
duration?: string | null;
/**
* The reason property
*/
reason?: string;
reason?: string | null;
/**
* The ticketNumber property
*/
ticketNumber?: string;
ticketNumber?: string | null;
/**
* The ticketSystem property
*/
ticketSystem?: string;
ticketSystem?: string | null;
}

@@ -65,3 +65,3 @@ /**

*/
export declare function serializeSelfActivatePostRequestBody(writer: SerializationWriter, selfActivatePostRequestBody?: Partial<SelfActivatePostRequestBody> | undefined): void;
export declare function serializeSelfActivatePostRequestBody(writer: SerializationWriter, selfActivatePostRequestBody?: Partial<SelfActivatePostRequestBody> | undefined | null): void;
/**

@@ -68,0 +68,0 @@ * Uri template for the request builder.

@@ -13,2 +13,3 @@ /* tslint:disable */

*/
// @ts-ignore
export function createSelfActivatePostRequestBodyFromDiscriminatorValue(parseNode) {

@@ -21,2 +22,3 @@ return deserializeIntoSelfActivatePostRequestBody;

*/
// @ts-ignore
export function deserializeIntoSelfActivatePostRequestBody(selfActivatePostRequestBody = {}) {

@@ -35,8 +37,11 @@ return {

*/
// @ts-ignore
export function serializeSelfActivatePostRequestBody(writer, selfActivatePostRequestBody = {}) {
writer.writeStringValue("duration", selfActivatePostRequestBody.duration);
writer.writeStringValue("reason", selfActivatePostRequestBody.reason);
writer.writeStringValue("ticketNumber", selfActivatePostRequestBody.ticketNumber);
writer.writeStringValue("ticketSystem", selfActivatePostRequestBody.ticketSystem);
writer.writeAdditionalData(selfActivatePostRequestBody.additionalData);
if (selfActivatePostRequestBody) {
writer.writeStringValue("duration", selfActivatePostRequestBody.duration);
writer.writeStringValue("reason", selfActivatePostRequestBody.reason);
writer.writeStringValue("ticketNumber", selfActivatePostRequestBody.ticketNumber);
writer.writeStringValue("ticketSystem", selfActivatePostRequestBody.ticketSystem);
writer.writeAdditionalData(selfActivatePostRequestBody.additionalData);
}
}

@@ -43,0 +48,0 @@ /**

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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