@microsoft/sp-module-interfaces 1.20.2 → 1.21.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 +59 -1
- package/dist/index-internal-public.d.ts +53 -1
- package/dist/index-internal.d.ts +760 -15
- package/lib-commonjs/index.js +31 -28
- package/lib-commonjs/manifestHelpers.js +22 -19
- package/lib-commonjs/manifestSchemaValidator.js +100 -63
- package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideApplicationManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideAssemblyManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.js +11 -3
- package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideLibraryManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideManifestBase.js +10 -3
- package/lib-commonjs/manifestSchemas/IClientSideMultiVersionManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.js +62 -67
- package/lib-commonjs/manifestSchemas/ICommandSetExtensionManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IPrefabAppManifest.js +6 -0
- package/lib-commonjs/manifestSchemas/ManifestType.js +18 -13
- package/lib-commonjs/manifestSchemas/examples/application_1.manifest.js +24 -6
- package/lib-commonjs/manifestSchemas/examples/application_2.manifest.js +28 -7
- package/lib-commonjs/manifestSchemas/examples/application_3.manifest.js +22 -5
- package/lib-commonjs/manifestSchemas/examples/assembly_1.manifest.js +18 -4
- package/lib-commonjs/manifestSchemas/examples/commandSet_1.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/extension_1.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/extension_2.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/extension_3.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/extension_4.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/library_1.manifest.js +18 -4
- package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.js +24 -6
- package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.js +354 -0
- package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.js +391 -0
- package/lib-commonjs/manifestSchemas/examples/prefabapp.manifest.json +379 -0
- package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.js +24 -6
- package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.js +47 -12
- package/lib-commonjs/manifestSchemas/jsonSchemas/adaptive-card-extension-manifest.schema.json +8 -0
- package/lib-commonjs/manifestSchemas/jsonSchemas/client-side-component-manifest.schema.json +5 -2
- package/lib-commonjs/manifestSchemas/jsonSchemas/client-side-web-part-manifest.schema.json +23 -0
- package/lib-commonjs/manifestSchemas/jsonSchemas/prefab-app-manifest.schema.json +176 -0
- package/lib-commonjs/manifestSchemas/remote/draft-04.schema.json +137 -0
- package/lib-commonjs/manifestSchemas/remote/site-design-script-actions.schema.json +1158 -0
- package/{lib-commonjs → lib-dts}/index.d.ts +1 -0
- package/{lib-commonjs → lib-dts}/manifestSchemaValidator.d.ts +4 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts +6 -0
- package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideComponentManifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideWebPartManifest.d.ts +33 -0
- package/lib-dts/manifestSchemas/IPrefabAppManifest.d.ts +255 -0
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_2.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_3.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/assembly_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/commandSet_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_2.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_3.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_4.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/library_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/multi-version_1.manifest.d.ts +1 -1
- package/lib-dts/manifestSchemas/examples/prefab_1.manifest.d.ts +4 -0
- package/lib-dts/manifestSchemas/examples/prefab_2.manifest.d.ts +4 -0
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/webpart_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/webpart_2.manifest.d.ts +1 -1
- package/{dist → lib-dts}/tsdoc-metadata.json +1 -1
- package/lib-esm/index.js +15 -0
- package/lib-esm/manifestHelpers.js +21 -0
- package/lib-esm/manifestSchemaValidator.js +135 -0
- package/lib-esm/manifestSchemas/IAdaptiveCardExtensionManifest.js +9 -0
- package/lib-esm/manifestSchemas/IClientSideApplicationManifest.js +5 -0
- package/lib-esm/manifestSchemas/IClientSideAssemblyManifest.js +7 -0
- package/lib-esm/manifestSchemas/IClientSideComponentLoaderConfiguration.js +17 -0
- package/lib-esm/manifestSchemas/IClientSideComponentManifest.js +27 -0
- package/lib-esm/manifestSchemas/IClientSideExtensionManifest.js +7 -0
- package/lib-esm/manifestSchemas/IClientSideLibraryManifest.js +7 -0
- package/lib-esm/manifestSchemas/IClientSideManifestBase.js +7 -0
- package/lib-esm/manifestSchemas/IClientSideMultiVersionManifest.js +25 -0
- package/lib-esm/manifestSchemas/IClientSideWebPartManifest.js +62 -0
- package/lib-esm/manifestSchemas/ICommandSetExtensionManifest.js +8 -0
- package/lib-esm/manifestSchemas/IPrefabAppManifest.js +7 -0
- package/lib-esm/manifestSchemas/ManifestType.js +15 -0
- package/lib-esm/manifestSchemas/examples/application.manifest.json +346 -0
- package/lib-esm/manifestSchemas/examples/application_1.manifest.js +344 -0
- package/lib-esm/manifestSchemas/examples/application_2.manifest.js +47 -0
- package/lib-esm/manifestSchemas/examples/application_3.manifest.js +42 -0
- package/lib-esm/manifestSchemas/examples/assembly.manifest.json +331 -0
- package/lib-esm/manifestSchemas/examples/assembly_1.manifest.js +336 -0
- package/lib-esm/manifestSchemas/examples/commandSet_1.manifest.js +42 -0
- package/lib-esm/manifestSchemas/examples/commandset.manifest.json +38 -0
- package/lib-esm/manifestSchemas/examples/extension.manifest.json +20 -0
- package/lib-esm/manifestSchemas/examples/extension_1.manifest.js +25 -0
- package/lib-esm/manifestSchemas/examples/extension_2.manifest.js +24 -0
- package/lib-esm/manifestSchemas/examples/extension_3.manifest.js +23 -0
- package/lib-esm/manifestSchemas/examples/extension_4.manifest.js +23 -0
- package/lib-esm/manifestSchemas/examples/library.manifest.json +330 -0
- package/lib-esm/manifestSchemas/examples/library_1.manifest.js +335 -0
- package/lib-esm/manifestSchemas/examples/multi-version_1.manifest.js +673 -0
- package/lib-esm/manifestSchemas/examples/multi-version_1.manifest.json +336 -0
- package/lib-esm/manifestSchemas/examples/prefab_1.manifest.js +344 -0
- package/lib-esm/manifestSchemas/examples/prefab_2.manifest.js +381 -0
- package/lib-esm/manifestSchemas/examples/prefabapp.manifest.json +379 -0
- package/lib-esm/manifestSchemas/examples/webpart.manifest.json +380 -0
- package/lib-esm/manifestSchemas/examples/webpart_1.manifest.js +350 -0
- package/lib-esm/manifestSchemas/examples/webpart_2.manifest.js +388 -0
- package/lib-esm/manifestSchemas/jsonSchemas/adaptive-card-extension-manifest.schema.json +230 -0
- package/lib-esm/manifestSchemas/jsonSchemas/any-value.schema.json +8 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-application-manifest.schema.json +138 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-assembly-manifest.schema.json +45 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-component-loader-configuration.schema.json +273 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-component-manifest.schema.json +131 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-extension-manifest.schema.json +61 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-library-manifest.schema.json +39 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-manifest-base.schema.json +25 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-multi-version-manifest.schema.json +118 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-web-part-manifest.schema.json +348 -0
- package/lib-esm/manifestSchemas/jsonSchemas/command-set-extension-manifest.schema.json +81 -0
- package/lib-esm/manifestSchemas/jsonSchemas/guid.schema.json +6 -0
- package/lib-esm/manifestSchemas/jsonSchemas/localized-string.schema.json +33 -0
- package/lib-esm/manifestSchemas/jsonSchemas/prefab-app-manifest.schema.json +176 -0
- package/lib-esm/manifestSchemas/jsonSchemas/semver.schema.json +8 -0
- package/lib-esm/manifestSchemas/remote/draft-04.schema.json +137 -0
- package/lib-esm/manifestSchemas/remote/site-design-script-actions.schema.json +1158 -0
- package/package.json +32 -11
- package/lib-commonjs/index.d.ts.map +0 -1
- package/lib-commonjs/manifestHelpers.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemaValidator.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideApplicationManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideAssemblyManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideLibraryManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideManifestBase.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideMultiVersionManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/ICommandSetExtensionManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/ManifestType.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/application_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/application_2.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/application_3.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/assembly_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/commandSet_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/extension_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/extension_2.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/extension_3.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/extension_4.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/library_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.d.ts.map +0 -1
- /package/{lib-commonjs → lib-dts}/manifestHelpers.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideApplicationManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideAssemblyManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideExtensionManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideLibraryManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideManifestBase.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideMultiVersionManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/ICommandSetExtensionManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/ManifestType.d.ts +0 -0
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Type of client-side component.
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
5
|
-
export declare type ComponentType = 'Application' | 'WebPart' | 'Library' | 'Extension' | 'AdaptiveCardExtension';
|
|
5
|
+
export declare type ComponentType = 'Application' | 'WebPart' | 'Library' | 'Extension' | 'AdaptiveCardExtension' | 'Prefab';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* The type of client-side extension. Used by IClientSideExtensionManifest.extensionType.
|
|
@@ -55,6 +55,12 @@ export declare interface IAdaptiveCardExtensionManifest<TProperties> extends ICl
|
|
|
55
55
|
*/
|
|
56
56
|
hiddenFromToolbox?: boolean;
|
|
57
57
|
/* Excluded from this release type: isolationLevel */
|
|
58
|
+
/**
|
|
59
|
+
* The scope of the personalization on how an AdaptiveCardExtension can be personalized by an end user.
|
|
60
|
+
*
|
|
61
|
+
* @beta
|
|
62
|
+
*/
|
|
63
|
+
personalization?: 'Disallow' | 'Allow';
|
|
58
64
|
/**
|
|
59
65
|
* Definition:
|
|
60
66
|
* - If true, the AdaptiveCardExtension will be disposed and reloaded when the AdaptiveCardExtension data is updated by an external source.
|
|
@@ -728,6 +734,20 @@ export declare interface IClientSideWebPartManifest<TProperties> extends IClient
|
|
|
728
734
|
* and will be hosted as a Teams application (supportedHosts contains any of Teams hosts).
|
|
729
735
|
*/
|
|
730
736
|
supportsSelfFramingInTeams?: boolean;
|
|
737
|
+
/**
|
|
738
|
+
* Definition: Defines the default sizing of webpart in flexible sections, as well as if it supports dynamic resizing.
|
|
739
|
+
* Example:
|
|
740
|
+
* ```
|
|
741
|
+
* flexibleLayoutSizing: {
|
|
742
|
+
* supportsDynamicResizing: false,
|
|
743
|
+
* defaultColumnWidth: 22,
|
|
744
|
+
* defaultRowHeight: 21
|
|
745
|
+
* }
|
|
746
|
+
* ```
|
|
747
|
+
* @remarks
|
|
748
|
+
* Ensure this remains up to date with IFlexibleControlSizingData in FlexibleControl.types.ts
|
|
749
|
+
*/
|
|
750
|
+
flexibleLayoutSizing?: IFlexibleLayoutSizing;
|
|
731
751
|
}
|
|
732
752
|
|
|
733
753
|
/**
|
|
@@ -1030,6 +1050,26 @@ export declare interface IComponentModuleConfiguration extends IModuleConfigurat
|
|
|
1030
1050
|
failoverPath?: string | IIntegrityPath;
|
|
1031
1051
|
}
|
|
1032
1052
|
|
|
1053
|
+
/**
|
|
1054
|
+
* Flexible layout sizing data
|
|
1055
|
+
* @public
|
|
1056
|
+
*/
|
|
1057
|
+
export declare interface IFlexibleLayoutSizing {
|
|
1058
|
+
/**
|
|
1059
|
+
* If true webpart can resize to any width between minimum and 70 columns
|
|
1060
|
+
* Otherwise webpart is slot resized to 22, 34, 48, or 70 columns
|
|
1061
|
+
*/
|
|
1062
|
+
supportsDynamicResizing?: boolean;
|
|
1063
|
+
/**
|
|
1064
|
+
* Default column width for the webpart, used by drop hint
|
|
1065
|
+
*/
|
|
1066
|
+
defaultColumnWidth?: number;
|
|
1067
|
+
/**
|
|
1068
|
+
* Default row height for the webpart, used by drop hint
|
|
1069
|
+
*/
|
|
1070
|
+
defaultRowHeight?: number;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1033
1073
|
/**
|
|
1034
1074
|
* A path with the subresource integrity hash of the resource.
|
|
1035
1075
|
*
|
|
@@ -1256,8 +1296,22 @@ export declare interface IPathModuleConfiguration extends IModuleConfigurationBa
|
|
|
1256
1296
|
globalDependencies?: string[];
|
|
1257
1297
|
}
|
|
1258
1298
|
|
|
1299
|
+
/* Excluded from this release type: IPrefabAppManifest */
|
|
1300
|
+
|
|
1301
|
+
/* Excluded from this release type: IPrefabAppOnDemandSiteScript */
|
|
1302
|
+
|
|
1303
|
+
/* Excluded from this release type: IPrefabAppOnInstallSiteScript */
|
|
1304
|
+
|
|
1305
|
+
/* Excluded from this release type: IPrefabAppSiteScriptBase */
|
|
1306
|
+
|
|
1307
|
+
/* Excluded from this release type: IPrefabAppSiteSettingsLink */
|
|
1308
|
+
|
|
1309
|
+
/* Excluded from this release type: IPrefabAppToolboxEntry */
|
|
1310
|
+
|
|
1259
1311
|
/* Excluded from this release type: IPreloadOptions */
|
|
1260
1312
|
|
|
1313
|
+
/* Excluded from this release type: ISiteScriptActionBase */
|
|
1314
|
+
|
|
1261
1315
|
/* Excluded from this release type: ManifestType */
|
|
1262
1316
|
|
|
1263
1317
|
/**
|
|
@@ -1333,4 +1387,8 @@ export declare const enum PredefinedGroup {
|
|
|
1333
1387
|
Local = "8b7bf6f1-a56a-4aa3-8657-7eb6e7e6af61"
|
|
1334
1388
|
}
|
|
1335
1389
|
|
|
1390
|
+
/* Excluded from this release type: PrefabAppSiteScript */
|
|
1391
|
+
|
|
1392
|
+
/* Excluded from this release type: SiteScriptType */
|
|
1393
|
+
|
|
1336
1394
|
export { }
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Type of client-side component.
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
5
|
-
export declare type ComponentType = 'Application' | 'WebPart' | 'Library' | 'Extension' | 'AdaptiveCardExtension';
|
|
5
|
+
export declare type ComponentType = 'Application' | 'WebPart' | 'Library' | 'Extension' | 'AdaptiveCardExtension' | 'Prefab';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* The type of client-side extension. Used by IClientSideExtensionManifest.extensionType.
|
|
@@ -359,6 +359,20 @@ export declare interface IClientSideWebPartManifest<TProperties> extends IClient
|
|
|
359
359
|
* and will be hosted as a Teams application (supportedHosts contains any of Teams hosts).
|
|
360
360
|
*/
|
|
361
361
|
supportsSelfFramingInTeams?: boolean;
|
|
362
|
+
/**
|
|
363
|
+
* Definition: Defines the default sizing of webpart in flexible sections, as well as if it supports dynamic resizing.
|
|
364
|
+
* Example:
|
|
365
|
+
* ```
|
|
366
|
+
* flexibleLayoutSizing: {
|
|
367
|
+
* supportsDynamicResizing: false,
|
|
368
|
+
* defaultColumnWidth: 22,
|
|
369
|
+
* defaultRowHeight: 21
|
|
370
|
+
* }
|
|
371
|
+
* ```
|
|
372
|
+
* @remarks
|
|
373
|
+
* Ensure this remains up to date with IFlexibleControlSizingData in FlexibleControl.types.ts
|
|
374
|
+
*/
|
|
375
|
+
flexibleLayoutSizing?: IFlexibleLayoutSizing;
|
|
362
376
|
}
|
|
363
377
|
|
|
364
378
|
/**
|
|
@@ -584,6 +598,26 @@ export declare interface ICommandSetExtensionManifest extends IClientSideExtensi
|
|
|
584
598
|
|
|
585
599
|
/* Excluded from this release type: IComponentModuleConfiguration */
|
|
586
600
|
|
|
601
|
+
/**
|
|
602
|
+
* Flexible layout sizing data
|
|
603
|
+
* @public
|
|
604
|
+
*/
|
|
605
|
+
export declare interface IFlexibleLayoutSizing {
|
|
606
|
+
/**
|
|
607
|
+
* If true webpart can resize to any width between minimum and 70 columns
|
|
608
|
+
* Otherwise webpart is slot resized to 22, 34, 48, or 70 columns
|
|
609
|
+
*/
|
|
610
|
+
supportsDynamicResizing?: boolean;
|
|
611
|
+
/**
|
|
612
|
+
* Default column width for the webpart, used by drop hint
|
|
613
|
+
*/
|
|
614
|
+
defaultColumnWidth?: number;
|
|
615
|
+
/**
|
|
616
|
+
* Default row height for the webpart, used by drop hint
|
|
617
|
+
*/
|
|
618
|
+
defaultRowHeight?: number;
|
|
619
|
+
}
|
|
620
|
+
|
|
587
621
|
/* Excluded from this release type: IIntegrityPath */
|
|
588
622
|
|
|
589
623
|
/* Excluded from this release type: ILocalizedPathModuleConfiguration */
|
|
@@ -640,10 +674,28 @@ export declare interface ILocalizedString {
|
|
|
640
674
|
|
|
641
675
|
/* Excluded from this release type: IPathModuleConfiguration */
|
|
642
676
|
|
|
677
|
+
/* Excluded from this release type: IPrefabAppManifest */
|
|
678
|
+
|
|
679
|
+
/* Excluded from this release type: IPrefabAppOnDemandSiteScript */
|
|
680
|
+
|
|
681
|
+
/* Excluded from this release type: IPrefabAppOnInstallSiteScript */
|
|
682
|
+
|
|
683
|
+
/* Excluded from this release type: IPrefabAppSiteScriptBase */
|
|
684
|
+
|
|
685
|
+
/* Excluded from this release type: IPrefabAppSiteSettingsLink */
|
|
686
|
+
|
|
687
|
+
/* Excluded from this release type: IPrefabAppToolboxEntry */
|
|
688
|
+
|
|
643
689
|
/* Excluded from this release type: IPreloadOptions */
|
|
644
690
|
|
|
691
|
+
/* Excluded from this release type: ISiteScriptActionBase */
|
|
692
|
+
|
|
645
693
|
/* Excluded from this release type: ManifestType */
|
|
646
694
|
|
|
647
695
|
/* Excluded from this release type: PredefinedGroup */
|
|
648
696
|
|
|
697
|
+
/* Excluded from this release type: PrefabAppSiteScript */
|
|
698
|
+
|
|
699
|
+
/* Excluded from this release type: SiteScriptType */
|
|
700
|
+
|
|
649
701
|
export { }
|