@microsoft/sp-module-interfaces 1.21.0-beta.0 → 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.
Files changed (158) hide show
  1. package/dist/index-internal-beta.d.ts +15 -3
  2. package/dist/index-internal-public.d.ts +47 -2
  3. package/dist/index-internal.d.ts +15 -3
  4. package/lib-commonjs/index.js +31 -29
  5. package/lib-commonjs/manifestHelpers.js +22 -19
  6. package/lib-commonjs/manifestSchemaValidator.js +70 -84
  7. package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.js +5 -2
  8. package/lib-commonjs/manifestSchemas/IClientSideApplicationManifest.js +5 -2
  9. package/lib-commonjs/manifestSchemas/IClientSideAssemblyManifest.js +5 -2
  10. package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.js +11 -3
  11. package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.js +5 -2
  12. package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.js +5 -2
  13. package/lib-commonjs/manifestSchemas/IClientSideLibraryManifest.js +5 -2
  14. package/lib-commonjs/manifestSchemas/IClientSideManifestBase.js +10 -3
  15. package/lib-commonjs/manifestSchemas/IClientSideMultiVersionManifest.js +5 -2
  16. package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.js +62 -67
  17. package/lib-commonjs/manifestSchemas/ICommandSetExtensionManifest.js +5 -2
  18. package/lib-commonjs/manifestSchemas/IPrefabAppManifest.js +5 -2
  19. package/lib-commonjs/manifestSchemas/ManifestType.js +18 -13
  20. package/lib-commonjs/manifestSchemas/examples/application_1.manifest.js +24 -6
  21. package/lib-commonjs/manifestSchemas/examples/application_2.manifest.js +28 -7
  22. package/lib-commonjs/manifestSchemas/examples/application_3.manifest.js +22 -5
  23. package/lib-commonjs/manifestSchemas/examples/assembly_1.manifest.js +18 -4
  24. package/lib-commonjs/manifestSchemas/examples/commandSet_1.manifest.js +15 -3
  25. package/lib-commonjs/manifestSchemas/examples/extension_1.manifest.js +15 -3
  26. package/lib-commonjs/manifestSchemas/examples/extension_2.manifest.js +15 -3
  27. package/lib-commonjs/manifestSchemas/examples/extension_3.manifest.js +15 -3
  28. package/lib-commonjs/manifestSchemas/examples/extension_4.manifest.js +15 -3
  29. package/lib-commonjs/manifestSchemas/examples/library_1.manifest.js +18 -4
  30. package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.js +24 -6
  31. package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.js +27 -7
  32. package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.js +61 -9
  33. package/lib-commonjs/manifestSchemas/examples/prefabapp.manifest.json +37 -3
  34. package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.js +24 -6
  35. package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.js +47 -12
  36. package/lib-commonjs/manifestSchemas/jsonSchemas/prefab-app-manifest.schema.json +107 -3
  37. package/{lib-commonjs → lib-dts}/manifestSchemaValidator.d.ts +1 -1
  38. package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideWebPartManifest.d.ts +1 -3
  39. package/lib-dts/manifestSchemas/IPrefabAppManifest.d.ts +255 -0
  40. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_1.manifest.d.ts +1 -1
  41. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_2.manifest.d.ts +1 -1
  42. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_3.manifest.d.ts +1 -1
  43. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/assembly_1.manifest.d.ts +1 -1
  44. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/commandSet_1.manifest.d.ts +1 -1
  45. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_1.manifest.d.ts +1 -1
  46. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_2.manifest.d.ts +1 -1
  47. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_3.manifest.d.ts +1 -1
  48. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_4.manifest.d.ts +1 -1
  49. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/library_1.manifest.d.ts +1 -1
  50. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/multi-version_1.manifest.d.ts +1 -1
  51. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/prefab_1.manifest.d.ts +1 -1
  52. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/prefab_2.manifest.d.ts +1 -1
  53. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/webpart_1.manifest.d.ts +1 -1
  54. package/{lib-commonjs → lib-dts}/manifestSchemas/examples/webpart_2.manifest.d.ts +1 -1
  55. package/{dist → lib-dts}/tsdoc-metadata.json +1 -1
  56. package/lib-esm/index.js +15 -0
  57. package/lib-esm/manifestHelpers.js +21 -0
  58. package/lib-esm/manifestSchemaValidator.js +135 -0
  59. package/lib-esm/manifestSchemas/IAdaptiveCardExtensionManifest.js +9 -0
  60. package/lib-esm/manifestSchemas/IClientSideApplicationManifest.js +5 -0
  61. package/lib-esm/manifestSchemas/IClientSideAssemblyManifest.js +7 -0
  62. package/lib-esm/manifestSchemas/IClientSideComponentLoaderConfiguration.js +17 -0
  63. package/lib-esm/manifestSchemas/IClientSideComponentManifest.js +27 -0
  64. package/lib-esm/manifestSchemas/IClientSideExtensionManifest.js +7 -0
  65. package/lib-esm/manifestSchemas/IClientSideLibraryManifest.js +7 -0
  66. package/lib-esm/manifestSchemas/IClientSideManifestBase.js +7 -0
  67. package/lib-esm/manifestSchemas/IClientSideMultiVersionManifest.js +25 -0
  68. package/lib-esm/manifestSchemas/IClientSideWebPartManifest.js +62 -0
  69. package/lib-esm/manifestSchemas/ICommandSetExtensionManifest.js +8 -0
  70. package/lib-esm/manifestSchemas/IPrefabAppManifest.js +7 -0
  71. package/lib-esm/manifestSchemas/ManifestType.js +15 -0
  72. package/lib-esm/manifestSchemas/examples/application.manifest.json +346 -0
  73. package/lib-esm/manifestSchemas/examples/application_1.manifest.js +344 -0
  74. package/lib-esm/manifestSchemas/examples/application_2.manifest.js +47 -0
  75. package/lib-esm/manifestSchemas/examples/application_3.manifest.js +42 -0
  76. package/lib-esm/manifestSchemas/examples/assembly.manifest.json +331 -0
  77. package/lib-esm/manifestSchemas/examples/assembly_1.manifest.js +336 -0
  78. package/lib-esm/manifestSchemas/examples/commandSet_1.manifest.js +42 -0
  79. package/lib-esm/manifestSchemas/examples/commandset.manifest.json +38 -0
  80. package/lib-esm/manifestSchemas/examples/extension.manifest.json +20 -0
  81. package/lib-esm/manifestSchemas/examples/extension_1.manifest.js +25 -0
  82. package/lib-esm/manifestSchemas/examples/extension_2.manifest.js +24 -0
  83. package/lib-esm/manifestSchemas/examples/extension_3.manifest.js +23 -0
  84. package/lib-esm/manifestSchemas/examples/extension_4.manifest.js +23 -0
  85. package/lib-esm/manifestSchemas/examples/library.manifest.json +330 -0
  86. package/lib-esm/manifestSchemas/examples/library_1.manifest.js +335 -0
  87. package/lib-esm/manifestSchemas/examples/multi-version_1.manifest.js +673 -0
  88. package/lib-esm/manifestSchemas/examples/multi-version_1.manifest.json +336 -0
  89. package/lib-esm/manifestSchemas/examples/prefab_1.manifest.js +344 -0
  90. package/lib-esm/manifestSchemas/examples/prefab_2.manifest.js +381 -0
  91. package/lib-esm/manifestSchemas/examples/prefabapp.manifest.json +379 -0
  92. package/lib-esm/manifestSchemas/examples/webpart.manifest.json +380 -0
  93. package/lib-esm/manifestSchemas/examples/webpart_1.manifest.js +350 -0
  94. package/lib-esm/manifestSchemas/examples/webpart_2.manifest.js +388 -0
  95. package/lib-esm/manifestSchemas/jsonSchemas/adaptive-card-extension-manifest.schema.json +230 -0
  96. package/lib-esm/manifestSchemas/jsonSchemas/any-value.schema.json +8 -0
  97. package/lib-esm/manifestSchemas/jsonSchemas/client-side-application-manifest.schema.json +138 -0
  98. package/lib-esm/manifestSchemas/jsonSchemas/client-side-assembly-manifest.schema.json +45 -0
  99. package/lib-esm/manifestSchemas/jsonSchemas/client-side-component-loader-configuration.schema.json +273 -0
  100. package/lib-esm/manifestSchemas/jsonSchemas/client-side-component-manifest.schema.json +131 -0
  101. package/lib-esm/manifestSchemas/jsonSchemas/client-side-extension-manifest.schema.json +61 -0
  102. package/lib-esm/manifestSchemas/jsonSchemas/client-side-library-manifest.schema.json +39 -0
  103. package/lib-esm/manifestSchemas/jsonSchemas/client-side-manifest-base.schema.json +25 -0
  104. package/lib-esm/manifestSchemas/jsonSchemas/client-side-multi-version-manifest.schema.json +118 -0
  105. package/lib-esm/manifestSchemas/jsonSchemas/client-side-web-part-manifest.schema.json +348 -0
  106. package/lib-esm/manifestSchemas/jsonSchemas/command-set-extension-manifest.schema.json +81 -0
  107. package/lib-esm/manifestSchemas/jsonSchemas/guid.schema.json +6 -0
  108. package/lib-esm/manifestSchemas/jsonSchemas/localized-string.schema.json +33 -0
  109. package/lib-esm/manifestSchemas/jsonSchemas/prefab-app-manifest.schema.json +176 -0
  110. package/lib-esm/manifestSchemas/jsonSchemas/semver.schema.json +8 -0
  111. package/lib-esm/manifestSchemas/remote/draft-04.schema.json +137 -0
  112. package/lib-esm/manifestSchemas/remote/site-design-script-actions.schema.json +1158 -0
  113. package/package.json +27 -7
  114. package/lib-commonjs/index.d.ts.map +0 -1
  115. package/lib-commonjs/manifestHelpers.d.ts.map +0 -1
  116. package/lib-commonjs/manifestSchemaValidator.d.ts.map +0 -1
  117. package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts.map +0 -1
  118. package/lib-commonjs/manifestSchemas/IClientSideApplicationManifest.d.ts.map +0 -1
  119. package/lib-commonjs/manifestSchemas/IClientSideAssemblyManifest.d.ts.map +0 -1
  120. package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts.map +0 -1
  121. package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.d.ts.map +0 -1
  122. package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.d.ts.map +0 -1
  123. package/lib-commonjs/manifestSchemas/IClientSideLibraryManifest.d.ts.map +0 -1
  124. package/lib-commonjs/manifestSchemas/IClientSideManifestBase.d.ts.map +0 -1
  125. package/lib-commonjs/manifestSchemas/IClientSideMultiVersionManifest.d.ts.map +0 -1
  126. package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.d.ts.map +0 -1
  127. package/lib-commonjs/manifestSchemas/ICommandSetExtensionManifest.d.ts.map +0 -1
  128. package/lib-commonjs/manifestSchemas/IPrefabAppManifest.d.ts +0 -76
  129. package/lib-commonjs/manifestSchemas/IPrefabAppManifest.d.ts.map +0 -1
  130. package/lib-commonjs/manifestSchemas/ManifestType.d.ts.map +0 -1
  131. package/lib-commonjs/manifestSchemas/examples/application_1.manifest.d.ts.map +0 -1
  132. package/lib-commonjs/manifestSchemas/examples/application_2.manifest.d.ts.map +0 -1
  133. package/lib-commonjs/manifestSchemas/examples/application_3.manifest.d.ts.map +0 -1
  134. package/lib-commonjs/manifestSchemas/examples/assembly_1.manifest.d.ts.map +0 -1
  135. package/lib-commonjs/manifestSchemas/examples/commandSet_1.manifest.d.ts.map +0 -1
  136. package/lib-commonjs/manifestSchemas/examples/extension_1.manifest.d.ts.map +0 -1
  137. package/lib-commonjs/manifestSchemas/examples/extension_2.manifest.d.ts.map +0 -1
  138. package/lib-commonjs/manifestSchemas/examples/extension_3.manifest.d.ts.map +0 -1
  139. package/lib-commonjs/manifestSchemas/examples/extension_4.manifest.d.ts.map +0 -1
  140. package/lib-commonjs/manifestSchemas/examples/library_1.manifest.d.ts.map +0 -1
  141. package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.d.ts.map +0 -1
  142. package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.d.ts.map +0 -1
  143. package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.d.ts.map +0 -1
  144. package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.d.ts.map +0 -1
  145. package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.d.ts.map +0 -1
  146. /package/{lib-commonjs → lib-dts}/index.d.ts +0 -0
  147. /package/{lib-commonjs → lib-dts}/manifestHelpers.d.ts +0 -0
  148. /package/{lib-commonjs → lib-dts}/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts +0 -0
  149. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideApplicationManifest.d.ts +0 -0
  150. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideAssemblyManifest.d.ts +0 -0
  151. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts +0 -0
  152. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideComponentManifest.d.ts +0 -0
  153. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideExtensionManifest.d.ts +0 -0
  154. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideLibraryManifest.d.ts +0 -0
  155. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideManifestBase.d.ts +0 -0
  156. /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideMultiVersionManifest.d.ts +0 -0
  157. /package/{lib-commonjs → lib-dts}/manifestSchemas/ICommandSetExtensionManifest.d.ts +0 -0
  158. /package/{lib-commonjs → lib-dts}/manifestSchemas/ManifestType.d.ts +0 -0
@@ -0,0 +1,344 @@
1
+ const appManifest = {
2
+ manifestVersion: 2,
3
+ componentType: 'Application',
4
+ id: '00000000-0000-0000-0000-000000000000',
5
+ alias: 'myApplication',
6
+ version: '0.0.1',
7
+ safeWithCustomScriptDisabled: true,
8
+ loaderConfig: {
9
+ internalModuleBaseUrls: [
10
+ 'https://cdn.net/'
11
+ ],
12
+ entryModuleId: 'main.bundle',
13
+ scriptResources: {
14
+ frameworkA: {
15
+ type: 'component',
16
+ version: '1.2.3',
17
+ id: '00000000-0000-0000-0000-000000000000'
18
+ },
19
+ frameworkB: {
20
+ type: 'component',
21
+ version: '1.2.3',
22
+ id: '00000000-0000-0000-0000-000000000000',
23
+ failoverPath: 'script.js'
24
+ },
25
+ frameworkC: {
26
+ type: 'component',
27
+ version: 'latest',
28
+ id: '00000000-0000-0000-0000-000000000000',
29
+ failoverPath: {
30
+ path: 'script.js'
31
+ }
32
+ },
33
+ frameworkD: {
34
+ type: 'component',
35
+ version: 'latest',
36
+ id: '00000000-0000-0000-0000-000000000000',
37
+ failoverPath: {
38
+ path: 'script.js',
39
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
40
+ }
41
+ },
42
+ frameworkE: {
43
+ type: 'component',
44
+ version: '1.2.3',
45
+ id: '00000000-0000-0000-0000-000000000000',
46
+ shouldNotPreload: true
47
+ },
48
+ frameworkF: {
49
+ type: 'component',
50
+ version: '1.2.3',
51
+ id: '00000000-0000-0000-0000-000000000000',
52
+ failoverPath: 'script.js',
53
+ shouldNotPreload: true
54
+ },
55
+ frameworkG: {
56
+ type: 'component',
57
+ version: 'latest',
58
+ id: '00000000-0000-0000-0000-000000000000',
59
+ failoverPath: {
60
+ path: 'script.js'
61
+ },
62
+ shouldNotPreload: true
63
+ },
64
+ frameworkI: {
65
+ type: 'component',
66
+ version: 'latest',
67
+ id: '00000000-0000-0000-0000-000000000000',
68
+ failoverPath: {
69
+ path: 'script.js',
70
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
71
+ },
72
+ shouldNotPreload: true
73
+ },
74
+ frameworkJ: {
75
+ type: 'component',
76
+ version: '1.2.3',
77
+ id: '00000000-0000-0000-0000-000000000000',
78
+ shouldNotPreload: false
79
+ },
80
+ frameworkK: {
81
+ type: 'component',
82
+ version: '1.2.3',
83
+ id: '00000000-0000-0000-0000-000000000000',
84
+ failoverPath: 'script.js',
85
+ shouldNotPreload: false
86
+ },
87
+ frameworkL: {
88
+ type: 'component',
89
+ version: 'latest',
90
+ id: '00000000-0000-0000-0000-000000000000',
91
+ failoverPath: {
92
+ path: 'script.js'
93
+ },
94
+ shouldNotPreload: false
95
+ },
96
+ frameworkM: {
97
+ type: 'component',
98
+ version: 'latest',
99
+ id: '00000000-0000-0000-0000-000000000000',
100
+ failoverPath: {
101
+ path: 'script.js',
102
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
103
+ },
104
+ shouldNotPreload: false
105
+ },
106
+ 'main.bundle': {
107
+ type: 'path',
108
+ path: 'bundle.script.js'
109
+ },
110
+ dependencyA: {
111
+ type: 'path',
112
+ path: {
113
+ path: 'dependencyA.script.js',
114
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
115
+ }
116
+ },
117
+ dependencyB: {
118
+ type: 'path',
119
+ path: {
120
+ path: 'dependencyB.script.js'
121
+ }
122
+ },
123
+ dependencyC: {
124
+ type: 'path',
125
+ path: 'dependencyC.script.js'
126
+ },
127
+ dependencyD: {
128
+ type: 'path',
129
+ path: {
130
+ path: 'dependencyD.script.js',
131
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
132
+ },
133
+ shouldNotPreload: true
134
+ },
135
+ dependencyE: {
136
+ type: 'path',
137
+ path: {
138
+ path: 'dependencyE.script.js'
139
+ },
140
+ shouldNotPreload: true
141
+ },
142
+ dependencyF: {
143
+ type: 'path',
144
+ path: 'dependencyF.script.js',
145
+ shouldNotPreload: true
146
+ },
147
+ dependencyG: {
148
+ type: 'path',
149
+ path: {
150
+ path: 'dependencyG.script.js',
151
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
152
+ },
153
+ shouldNotPreload: false
154
+ },
155
+ dependencyH: {
156
+ type: 'path',
157
+ path: {
158
+ path: 'dependencyH.script.js'
159
+ },
160
+ shouldNotPreload: false
161
+ },
162
+ dependencyI: {
163
+ type: 'path',
164
+ path: 'dependencyI.script.js',
165
+ shouldNotPreload: false
166
+ },
167
+ stringsA: {
168
+ type: 'localizedPath',
169
+ defaultPath: 'stringsA_default.js'
170
+ },
171
+ stringsB: {
172
+ type: 'localizedPath',
173
+ defaultPath: {
174
+ path: 'stringsB_default.js',
175
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
176
+ }
177
+ },
178
+ stringsC: {
179
+ type: 'localizedPath',
180
+ defaultPath: {
181
+ path: 'stringsC_default.js'
182
+ }
183
+ },
184
+ stringsD: {
185
+ type: 'localizedPath',
186
+ defaultPath: 'stringsD_default.js',
187
+ paths: {
188
+ 'en-us': 'stringsD_en-us.js',
189
+ 'fr-fr': 'stringsD_fr-fr.js'
190
+ }
191
+ },
192
+ stringsE: {
193
+ type: 'localizedPath',
194
+ defaultPath: 'stringsE_default.js',
195
+ paths: {
196
+ 'en-us': {
197
+ path: 'stringsE_en-us.js'
198
+ },
199
+ 'fr-fr': 'stringsE_fr-fr.js'
200
+ }
201
+ },
202
+ stringsF: {
203
+ type: 'localizedPath',
204
+ defaultPath: 'stringsF_default.js',
205
+ paths: {
206
+ 'en-us': {
207
+ path: 'stringsF_en-us.js',
208
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
209
+ },
210
+ 'fr-fr': 'stringsF_fr-fr.js'
211
+ }
212
+ },
213
+ stringsG: {
214
+ type: 'localizedPath',
215
+ defaultPath: 'stringsG_default.js',
216
+ shouldNotPreload: true
217
+ },
218
+ stringsH: {
219
+ type: 'localizedPath',
220
+ defaultPath: {
221
+ path: 'stringsH_default.js',
222
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
223
+ },
224
+ shouldNotPreload: true
225
+ },
226
+ stringsI: {
227
+ type: 'localizedPath',
228
+ defaultPath: {
229
+ path: 'stringsI_default.js'
230
+ },
231
+ shouldNotPreload: true
232
+ },
233
+ stringsJ: {
234
+ type: 'localizedPath',
235
+ defaultPath: 'stringsJ_default.js',
236
+ paths: {
237
+ 'en-us': 'stringsJ_en-us.js',
238
+ 'fr-fr': 'stringsJ_fr-fr.js'
239
+ },
240
+ shouldNotPreload: true
241
+ },
242
+ stringsK: {
243
+ type: 'localizedPath',
244
+ defaultPath: 'stringsK_default.js',
245
+ paths: {
246
+ 'en-us': {
247
+ path: 'stringsK_en-us.js'
248
+ },
249
+ 'fr-fr': 'stringsK_fr-fr.js'
250
+ },
251
+ shouldNotPreload: true
252
+ },
253
+ stringsL: {
254
+ type: 'localizedPath',
255
+ defaultPath: 'stringsL_default.js',
256
+ paths: {
257
+ 'en-us': {
258
+ path: 'stringsL_en-us.js',
259
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
260
+ },
261
+ 'fr-fr': 'stringsL_fr-fr.js'
262
+ },
263
+ shouldNotPreload: true
264
+ },
265
+ stringsM: {
266
+ type: 'localizedPath',
267
+ defaultPath: 'stringsM_default.js',
268
+ shouldNotPreload: false
269
+ },
270
+ stringsN: {
271
+ type: 'localizedPath',
272
+ defaultPath: {
273
+ path: 'stringsN_default.js',
274
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
275
+ },
276
+ shouldNotPreload: false
277
+ },
278
+ stringsO: {
279
+ type: 'localizedPath',
280
+ defaultPath: {
281
+ path: 'stringsO_default.js'
282
+ },
283
+ shouldNotPreload: false
284
+ },
285
+ stringsP: {
286
+ type: 'localizedPath',
287
+ defaultPath: 'stringsP_default.js',
288
+ paths: {
289
+ 'en-us': 'stringsP_en-us.js',
290
+ 'fr-fr': 'stringsP_fr-fr.js'
291
+ },
292
+ shouldNotPreload: false
293
+ },
294
+ stringsQ: {
295
+ type: 'localizedPath',
296
+ defaultPath: 'stringsQ_default.js',
297
+ paths: {
298
+ 'en-us': {
299
+ path: 'stringsQ_en-us.js'
300
+ },
301
+ 'fr-fr': 'stringsQ_fr-fr.js'
302
+ },
303
+ shouldNotPreload: false
304
+ },
305
+ stringsR: {
306
+ type: 'localizedPath',
307
+ defaultPath: 'stringsR_default.js',
308
+ paths: {
309
+ 'en-us': {
310
+ path: 'stringsR_en-us.js',
311
+ integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
312
+ },
313
+ 'fr-fr': 'stringsR_fr-fr.js'
314
+ },
315
+ shouldNotPreload: false
316
+ },
317
+ nonAmdA: {
318
+ type: 'path',
319
+ path: 'nonAmdA.js',
320
+ globalName: 'nonAmdA'
321
+ },
322
+ nonAmdB: {
323
+ type: 'path',
324
+ path: 'nonAmdB.js',
325
+ globalName: 'nonAmdB',
326
+ globalDependencies: [
327
+ 'nonAmdB'
328
+ ]
329
+ }
330
+ }
331
+ },
332
+ preloadOptions: {},
333
+ preloadComponents: [],
334
+ title: {
335
+ default: 'foobar'
336
+ },
337
+ description: {
338
+ default: 'foobar baz'
339
+ },
340
+ assemblyId: '00000000-0000-0000-0000-000000000000'
341
+ };
342
+ export default appManifest;
343
+
344
+ //#sourceMappingUrl=./application_1.manifest.js.map
@@ -0,0 +1,47 @@
1
+ const appManifest = {
2
+ manifestVersion: 2,
3
+ componentType: 'Application',
4
+ id: '00000000-0000-0000-0000-000000000000',
5
+ alias: 'myApplication',
6
+ version: '0.0.1',
7
+ requiresCustomScript: false,
8
+ loaderConfig: {
9
+ internalModuleBaseUrls: [
10
+ 'https://cdn.net/'
11
+ ],
12
+ entryModuleId: 'main.bundle',
13
+ exportName: 'foobar',
14
+ scriptResources: {
15
+ 'main.bundle': {
16
+ type: 'path',
17
+ path: 'bundle.script.js'
18
+ }
19
+ }
20
+ },
21
+ preloadOptions: {
22
+ shouldPreloadWeb: true,
23
+ shouldPreloadUser: true,
24
+ shouldPreloadList: true,
25
+ shouldPreloadItem: true,
26
+ shouldPreloadQuickLaunch: true,
27
+ preloadListItemQueryOption: 'query',
28
+ preloadListItemQueryOptionOverride: 'query',
29
+ preloadListItemProperties: [
30
+ 'DefaultCanvasContentVersion'
31
+ ]
32
+ },
33
+ preloadComponents: [
34
+ 'framework1',
35
+ 'framework2'
36
+ ],
37
+ title: {
38
+ default: 'foobar'
39
+ },
40
+ description: {
41
+ default: 'foobar baz'
42
+ },
43
+ hasSuiteNav: true
44
+ };
45
+ export default appManifest;
46
+
47
+ //#sourceMappingUrl=./application_2.manifest.js.map
@@ -0,0 +1,42 @@
1
+ const appManifest = {
2
+ manifestVersion: 2,
3
+ componentType: 'Application',
4
+ id: '00000000-0000-0000-0000-000000000000',
5
+ alias: 'myApplication',
6
+ version: '0.0.1',
7
+ loaderConfig: {
8
+ internalModuleBaseUrls: [
9
+ 'https://cdn.net/'
10
+ ],
11
+ entryModuleId: 'main.bundle',
12
+ scriptResources: {
13
+ 'main.bundle': {
14
+ type: 'path',
15
+ path: 'bundle.script.js'
16
+ }
17
+ }
18
+ },
19
+ preloadOptions: {
20
+ shouldPreloadWeb: false,
21
+ shouldPreloadUser: false,
22
+ shouldPreloadList: false,
23
+ shouldPreloadItem: false,
24
+ shouldPreloadQuickLaunch: false
25
+ },
26
+ preloadComponents: [
27
+ 'framework1',
28
+ 'framework2'
29
+ ],
30
+ title: {
31
+ default: 'foobar',
32
+ 'en-us': 'ABC123',
33
+ 'fr-fr': '123ABC'
34
+ },
35
+ description: {
36
+ default: 'foobar baz'
37
+ },
38
+ hasSuiteNav: false
39
+ };
40
+ export default appManifest;
41
+
42
+ //#sourceMappingUrl=./application_3.manifest.js.map