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

@microsoft/teams-manifest

Package Overview
Dependencies
Maintainers
4
Versions
996
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@microsoft/teams-manifest - npm Package Compare versions

Comparing version 0.1.6-alpha.3031916b6.0 to 0.1.6-alpha.3aaafb262.0

build/tsconfig.tsbuildinfo

1

build/constants.d.ts
export declare const SharePointAppId = "00000003-0000-0ff1-ce00-000000000000";
//# sourceMappingURL=constants.d.ts.map

@@ -55,2 +55,1 @@ import { ConversationStarter } from "./pluginManifest";

}
//# sourceMappingURL=declarativeCopilotManifest.d.ts.map

@@ -866,2 +866,1 @@ /**

}
//# sourceMappingURL=devPreviewManifest.d.ts.map

@@ -14,2 +14,3 @@ import { TeamsAppManifest } from "./manifest";

export type Manifest = TeamsAppManifest | DevPreviewSchema;
export type ManifestProperties = ManifestCommonProperties;
export declare class ManifestUtil {

@@ -67,2 +68,1 @@ /**

}
//# sourceMappingURL=index.d.ts.map

@@ -151,9 +151,2 @@ "use strict";

}
if (manifest.composeExtensions &&
manifest.composeExtensions.length > 0 &&
manifest.composeExtensions[0].composeExtensionType == "apiBased" &&
((_a = manifest.composeExtensions[0].authorization) === null || _a === void 0 ? void 0 : _a.authType) ==
"microsoftEntra") {
capabilities.push("apiMeAAD");
}
const properties = {

@@ -166,2 +159,3 @@ id: manifest.id,

isSPFx: false,
isApiMeAAD: false,
};

@@ -180,2 +174,10 @@ // If it's copilot plugin app

}
// If it's API ME with AAD auth
if (manifest.composeExtensions &&
manifest.composeExtensions.length > 0 &&
manifest.composeExtensions[0].composeExtensionType == "apiBased" &&
((_a = manifest.composeExtensions[0].authorization) === null || _a === void 0 ? void 0 : _a.authType) ==
"microsoftEntra") {
properties.isApiMeAAD = true;
}
if ((_b = manifest.copilotExtensions) === null || _b === void 0 ? void 0 : _b.plugins) {

@@ -182,0 +184,0 @@ const apiPlugins = (_c = manifest.copilotExtensions) === null || _c === void 0 ? void 0 : _c.plugins;

@@ -511,2 +511,1 @@ export interface IDeveloper {

}
//# sourceMappingURL=manifest.d.ts.map

@@ -26,3 +26,6 @@ export interface ManifestCommonProperties {

isSPFx: boolean;
/**
* Whether it's an API ME with AAD auth
*/
isApiMeAAD: boolean;
}
//# sourceMappingURL=ManifestCommonProperties.d.ts.map

@@ -88,3 +88,3 @@ export type Instruction = string | string[];

url?: string;
information_protection_url?: string;
information_protection_label?: string;
template_selector?: string;

@@ -146,2 +146,1 @@ [k: string]: unknown;

}
//# sourceMappingURL=pluginManifest.d.ts.map
{
"name": "@microsoft/teams-manifest",
"version": "0.1.6-alpha.3031916b6.0",
"version": "0.1.6-alpha.3aaafb262.0",
"main": "build/index.js",

@@ -46,3 +46,3 @@ "types": "build/index.d.ts",

"prebuild": "npm run generate-manifest",
"build": "rimraf build && npx tsc -p ./",
"build": "tsc -p ./ --incremental",
"test": "npm run test:unit",

@@ -66,3 +66,3 @@ "test:unit": "npx nyc --reporter=lcov mocha --no-timeouts --require ts-node/register test/**/*.test.ts ",

},
"gitHead": "320034a53578c8309a3a9b8a376d0d9bf800e417"
"gitHead": "eb88e57de421c0ece7cf7245dde7a69be54d1320"
}

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