@microsoft/sp-module-interfaces 1.17.4 → 1.18.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index-internal-beta.d.ts +0 -3
- package/dist/index-internal-public.d.ts +0 -3
- package/dist/index-internal.d.ts +706 -17
- package/dist/tsdoc-metadata.json +1 -1
- package/lib-commonjs/manifestSchemaValidator.d.ts +8 -8
- package/lib-commonjs/manifestSchemaValidator.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemaValidator.js +7 -5
- package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts +2 -2
- package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideApplicationManifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideApplicationManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideAssemblyManifest.d.ts +1 -6
- package/lib-commonjs/manifestSchemas/IClientSideAssemblyManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideAssemblyManifest.js +0 -5
- package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.d.ts +2 -2
- package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideLibraryManifest.d.ts +1 -6
- package/lib-commonjs/manifestSchemas/IClientSideLibraryManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideLibraryManifest.js +0 -5
- package/lib-commonjs/manifestSchemas/IClientSideManifestBase.d.ts +0 -3
- package/lib-commonjs/manifestSchemas/IClientSideManifestBase.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideManifestBase.js +0 -3
- package/lib-commonjs/manifestSchemas/IClientSideMultiVersionManifest.d.ts +2 -5
- package/lib-commonjs/manifestSchemas/IClientSideMultiVersionManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideMultiVersionManifest.js +0 -3
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.d.ts +1 -6
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.js +0 -5
- package/lib-commonjs/manifestSchemas/ICommandSetExtensionManifest.d.ts +2 -2
- package/lib-commonjs/manifestSchemas/ICommandSetExtensionManifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/examples/application_1.manifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/examples/application_1.manifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/examples/application_2.manifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/examples/application_2.manifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/examples/application_3.manifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/examples/application_3.manifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/examples/assembly_1.manifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/examples/assembly_1.manifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/examples/commandSet_1.manifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/examples/commandSet_1.manifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/examples/extension_1.manifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/examples/extension_1.manifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/examples/extension_2.manifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/examples/extension_2.manifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/examples/extension_3.manifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/examples/extension_3.manifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/examples/extension_4.manifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/examples/extension_4.manifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/examples/library_1.manifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/examples/library_1.manifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.d.ts +2 -2
- package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.js +1 -2
- package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.js +1 -2
- package/package.json +4 -3
|
@@ -551,9 +551,6 @@ export declare interface IClientSideExtensionManifest extends IClientSideCompone
|
|
|
551
551
|
export declare interface IClientSideLibraryManifest extends IClientSideComponentManifest {
|
|
552
552
|
}
|
|
553
553
|
|
|
554
|
-
/**
|
|
555
|
-
* @Copyright (c) Microsoft Corporation. All rights reserved.
|
|
556
|
-
*/
|
|
557
554
|
/**
|
|
558
555
|
* This interface defines members that are common between all deployable manifests.
|
|
559
556
|
*
|
|
@@ -177,9 +177,6 @@ export declare interface IClientSideExtensionManifest extends IClientSideCompone
|
|
|
177
177
|
export declare interface IClientSideLibraryManifest extends IClientSideComponentManifest {
|
|
178
178
|
}
|
|
179
179
|
|
|
180
|
-
/**
|
|
181
|
-
* @Copyright (c) Microsoft Corporation. All rights reserved.
|
|
182
|
-
*/
|
|
183
180
|
/**
|
|
184
181
|
* This interface defines members that are common between all deployable manifests.
|
|
185
182
|
*
|