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

@microsoft/msgraph-beta-sdk-trustframework

Package Overview
Dependencies
Maintainers
0
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@microsoft/msgraph-beta-sdk-trustframework - 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-trustframework",
"version": "1.0.0-preview.23",
"version": "1.0.0-preview.24",
"description": "TrustFramework fluent API for Microsoft Graph",

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

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

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

*/
backingStoreEnabled?: boolean;
backingStoreEnabled?: boolean | null;
/**
* The exp property
*/
exp?: number;
exp?: number | null;
/**
* The kty property
*/
kty?: string;
kty?: string | null;
/**
* The nbf property
*/
nbf?: number;
nbf?: number | null;
/**
* The use property
*/
use?: string;
use?: string | null;
}

@@ -66,3 +66,3 @@ /**

*/
export declare function serializeGenerateKeyPostRequestBody(writer: SerializationWriter, generateKeyPostRequestBody?: Partial<GenerateKeyPostRequestBody> | undefined): void;
export declare function serializeGenerateKeyPostRequestBody(writer: SerializationWriter, generateKeyPostRequestBody?: Partial<GenerateKeyPostRequestBody> | undefined | null): void;
/**

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

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

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

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

*/
// @ts-ignore
export function deserializeIntoGenerateKeyPostRequestBody(generateKeyPostRequestBody = {}) {

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

*/
// @ts-ignore
export function serializeGenerateKeyPostRequestBody(writer, generateKeyPostRequestBody = {}) {
writer.writeNumberValue("exp", generateKeyPostRequestBody.exp);
writer.writeStringValue("kty", generateKeyPostRequestBody.kty);
writer.writeNumberValue("nbf", generateKeyPostRequestBody.nbf);
writer.writeStringValue("use", generateKeyPostRequestBody.use);
writer.writeAdditionalData(generateKeyPostRequestBody.additionalData);
if (generateKeyPostRequestBody) {
writer.writeNumberValue("exp", generateKeyPostRequestBody.exp);
writer.writeStringValue("kty", generateKeyPostRequestBody.kty);
writer.writeNumberValue("nbf", generateKeyPostRequestBody.nbf);
writer.writeStringValue("use", generateKeyPostRequestBody.use);
writer.writeAdditionalData(generateKeyPostRequestBody.additionalData);
}
}

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

@@ -18,3 +18,3 @@ import { type TrustFrameworkKey } from '@microsoft/msgraph-beta-sdk/models/index.js';

*/
export declare function serializeUploadCertificatePostRequestBody(writer: SerializationWriter, uploadCertificatePostRequestBody?: Partial<UploadCertificatePostRequestBody> | undefined): void;
export declare function serializeUploadCertificatePostRequestBody(writer: SerializationWriter, uploadCertificatePostRequestBody?: Partial<UploadCertificatePostRequestBody> | undefined | null): void;
export interface UploadCertificatePostRequestBody extends AdditionalDataHolder, BackedModel, Parsable {

@@ -28,7 +28,7 @@ /**

*/
backingStoreEnabled?: boolean;
backingStoreEnabled?: boolean | null;
/**
* The key property
*/
key?: string;
key?: string | null;
}

@@ -35,0 +35,0 @@ /**

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

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

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

*/
// @ts-ignore
export function deserializeIntoUploadCertificatePostRequestBody(uploadCertificatePostRequestBody = {}) {

@@ -32,5 +34,8 @@ return {

*/
// @ts-ignore
export function serializeUploadCertificatePostRequestBody(writer, uploadCertificatePostRequestBody = {}) {
writer.writeStringValue("key", uploadCertificatePostRequestBody.key);
writer.writeAdditionalData(uploadCertificatePostRequestBody.additionalData);
if (uploadCertificatePostRequestBody) {
writer.writeStringValue("key", uploadCertificatePostRequestBody.key);
writer.writeAdditionalData(uploadCertificatePostRequestBody.additionalData);
}
}

@@ -37,0 +42,0 @@ /**

@@ -18,3 +18,3 @@ import { type TrustFrameworkKey } from '@microsoft/msgraph-beta-sdk/models/index.js';

*/
export declare function serializeUploadPkcs12PostRequestBody(writer: SerializationWriter, uploadPkcs12PostRequestBody?: Partial<UploadPkcs12PostRequestBody> | undefined): void;
export declare function serializeUploadPkcs12PostRequestBody(writer: SerializationWriter, uploadPkcs12PostRequestBody?: Partial<UploadPkcs12PostRequestBody> | undefined | null): void;
export interface UploadPkcs12PostRequestBody extends AdditionalDataHolder, BackedModel, Parsable {

@@ -28,11 +28,11 @@ /**

*/
backingStoreEnabled?: boolean;
backingStoreEnabled?: boolean | null;
/**
* The key property
*/
key?: string;
key?: string | null;
/**
* The password property
*/
password?: string;
password?: string | null;
}

@@ -39,0 +39,0 @@ /**

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

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

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

*/
// @ts-ignore
export function deserializeIntoUploadPkcs12PostRequestBody(uploadPkcs12PostRequestBody = {}) {

@@ -33,6 +35,9 @@ return {

*/
// @ts-ignore
export function serializeUploadPkcs12PostRequestBody(writer, uploadPkcs12PostRequestBody = {}) {
writer.writeStringValue("key", uploadPkcs12PostRequestBody.key);
writer.writeStringValue("password", uploadPkcs12PostRequestBody.password);
writer.writeAdditionalData(uploadPkcs12PostRequestBody.additionalData);
if (uploadPkcs12PostRequestBody) {
writer.writeStringValue("key", uploadPkcs12PostRequestBody.key);
writer.writeStringValue("password", uploadPkcs12PostRequestBody.password);
writer.writeAdditionalData(uploadPkcs12PostRequestBody.additionalData);
}
}

@@ -39,0 +44,0 @@ /**

@@ -18,3 +18,3 @@ import { type TrustFrameworkKey } from '@microsoft/msgraph-beta-sdk/models/index.js';

*/
export declare function serializeUploadSecretPostRequestBody(writer: SerializationWriter, uploadSecretPostRequestBody?: Partial<UploadSecretPostRequestBody> | undefined): void;
export declare function serializeUploadSecretPostRequestBody(writer: SerializationWriter, uploadSecretPostRequestBody?: Partial<UploadSecretPostRequestBody> | undefined | null): void;
export interface UploadSecretPostRequestBody extends AdditionalDataHolder, BackedModel, Parsable {

@@ -28,19 +28,19 @@ /**

*/
backingStoreEnabled?: boolean;
backingStoreEnabled?: boolean | null;
/**
* The exp property
*/
exp?: number;
exp?: number | null;
/**
* The k property
*/
k?: string;
k?: string | null;
/**
* The nbf property
*/
nbf?: number;
nbf?: number | null;
/**
* The use property
*/
use?: string;
use?: string | null;
}

@@ -47,0 +47,0 @@ /**

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

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

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

*/
// @ts-ignore
export function deserializeIntoUploadSecretPostRequestBody(uploadSecretPostRequestBody = {}) {

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

*/
// @ts-ignore
export function serializeUploadSecretPostRequestBody(writer, uploadSecretPostRequestBody = {}) {
writer.writeNumberValue("exp", uploadSecretPostRequestBody.exp);
writer.writeStringValue("k", uploadSecretPostRequestBody.k);
writer.writeNumberValue("nbf", uploadSecretPostRequestBody.nbf);
writer.writeStringValue("use", uploadSecretPostRequestBody.use);
writer.writeAdditionalData(uploadSecretPostRequestBody.additionalData);
if (uploadSecretPostRequestBody) {
writer.writeNumberValue("exp", uploadSecretPostRequestBody.exp);
writer.writeStringValue("k", uploadSecretPostRequestBody.k);
writer.writeNumberValue("nbf", uploadSecretPostRequestBody.nbf);
writer.writeStringValue("use", uploadSecretPostRequestBody.use);
writer.writeAdditionalData(uploadSecretPostRequestBody.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

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

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