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