@microsoft/sp-module-interfaces 1.14.0-rc.2 → 1.15.0-beta.6
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 +37 -48
- package/dist/index-internal-public.d.ts +6 -4
- package/dist/index-internal.d.ts +710 -16
- package/lib-commonjs/index.js +1 -1
- package/lib-commonjs/manifestSchemaValidator.js +1 -1
- package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts +2 -2
- package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts +21 -33
- package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts.map +1 -1
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.d.ts +2 -2
- package/lib-commonjs/manifestSchemas/ICommandSetExtensionManifest.d.ts +1 -1
- package/lib-commonjs/manifestSchemas/examples/application.manifest.json +36 -36
- package/lib-commonjs/manifestSchemas/examples/application_1.manifest.js +36 -36
- package/lib-commonjs/manifestSchemas/examples/assembly.manifest.json +37 -37
- package/lib-commonjs/manifestSchemas/examples/assembly_1.manifest.js +36 -36
- package/lib-commonjs/manifestSchemas/examples/library.manifest.json +36 -36
- package/lib-commonjs/manifestSchemas/examples/library_1.manifest.js +36 -36
- package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.js +72 -72
- package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.json +36 -36
- package/lib-commonjs/manifestSchemas/examples/webpart.manifest.json +36 -36
- package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.js +36 -36
- package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.js +36 -36
- package/lib-commonjs/manifestSchemas/jsonSchemas/client-side-component-loader-configuration.schema.json +12 -18
- package/lib-commonjs/manifestSchemas/jsonSchemas/client-side-extension-manifest.schema.json +2 -1
- package/package.json +6 -2
package/lib-commonjs/index.js
CHANGED
|
@@ -7,7 +7,7 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
7
7
|
o[k2] = m[k];
|
|
8
8
|
}));
|
|
9
9
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
-
for (var p in m) if (p !== "default" && !
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
11
|
};
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
13
|
__exportStar(require("./manifestSchemas/IClientSideApplicationManifest"), exports);
|
|
@@ -14,7 +14,7 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
14
14
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
15
|
if (mod && mod.__esModule) return mod;
|
|
16
16
|
var result = {};
|
|
17
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
18
|
__setModuleDefault(result, mod);
|
|
19
19
|
return result;
|
|
20
20
|
};
|
|
@@ -166,7 +166,7 @@ export interface IAdaptiveCardExtensionManifestEntry<TProperties> {
|
|
|
166
166
|
* {
|
|
167
167
|
* "default": "A tool for displaying neat information.",
|
|
168
168
|
* "en-us": "A tool for displaying neat information.",
|
|
169
|
-
* "fr-fr": "Un outil d
|
|
169
|
+
* "fr-fr": "Un outil d'affichage des informations soignées.",
|
|
170
170
|
* "zh": "用於顯示整潔資訊的工具。"
|
|
171
171
|
* }
|
|
172
172
|
* ```
|
|
@@ -194,7 +194,7 @@ export interface IAdaptiveCardExtensionManifestEntry<TProperties> {
|
|
|
194
194
|
* this field must have a value. This value can be an absolute URL (e.g. `"http://example.com/icons/my-icon.png"`) or
|
|
195
195
|
* a relative file path (e.g. `"./icons/my-icon.png"`). In the latter case, the path will be resolved relative to
|
|
196
196
|
* the folder containing the input manifest. The icon file will be copied to the deployment folder like an asset,
|
|
197
|
-
* and the output manifest
|
|
197
|
+
* and the output manifest's iconImageUrl will be replaced with a URL relative to the URL used to load all other
|
|
198
198
|
* assets (the loaderConfig.internalModuleBaseUrls property).
|
|
199
199
|
*
|
|
200
200
|
* Supported values: Any absolute URL.
|
|
@@ -113,45 +113,30 @@ export interface IClientSideComponentLoaderConfiguration {
|
|
|
113
113
|
};
|
|
114
114
|
}
|
|
115
115
|
/**
|
|
116
|
-
*
|
|
117
|
-
|
|
116
|
+
* @beta
|
|
117
|
+
*/
|
|
118
|
+
export declare type IModuleConfiguration = IComponentModuleConfiguration | IPathModuleConfiguration | ILocalizedPathModuleConfiguration;
|
|
119
|
+
/**
|
|
120
|
+
* A path with the subresource integrity hash of the resource.
|
|
118
121
|
*
|
|
119
122
|
* @beta
|
|
120
123
|
*/
|
|
121
|
-
export interface
|
|
124
|
+
export interface IIntegrityPath {
|
|
122
125
|
/**
|
|
123
|
-
*
|
|
124
|
-
* paths provided in the "internalModuleBaseUrls" field. The script referenced by this field is loaded by default
|
|
125
|
-
* unless a debug version of the script is provided and explicitly requested.
|
|
126
|
-
*
|
|
127
|
-
* @remarks
|
|
128
|
-
*
|
|
129
|
-
* Supported values: The path to the default/non-debug script either as a fully-qualified URL or as a path under the
|
|
130
|
-
* paths provided in the "internalModuleBaseUrls" field.
|
|
131
|
-
*
|
|
132
|
-
* Example: `"master_2015-04-20/my-application.bundle_1928f8a0.js"`
|
|
126
|
+
* The path to the resource.
|
|
133
127
|
*/
|
|
134
|
-
|
|
128
|
+
path: string;
|
|
135
129
|
/**
|
|
136
|
-
*
|
|
137
|
-
* the paths provided in the "internalModuleBaseUrls" field. The script referenced by this field is only loaded if
|
|
138
|
-
* it is present and debug scripts are explicitly requested.
|
|
139
|
-
*
|
|
140
|
-
* @remarks
|
|
141
|
-
*
|
|
142
|
-
* Supported values: The path to the debug script either as a fully-qualified URL or as a path under the
|
|
143
|
-
* paths provided in the `"internalModuleBaseUrls"` field.
|
|
144
|
-
*
|
|
145
|
-
* Example: `"master_2015-04-20/my-application.bundle_18182c39.debug.js"`
|
|
130
|
+
* The subresource integrity hash of the resource referenced in {@link IIntegrityPath.path}.
|
|
146
131
|
*/
|
|
147
|
-
|
|
132
|
+
integrity?: string;
|
|
148
133
|
}
|
|
149
134
|
/**
|
|
150
135
|
* This is the base interface for a script module's definition.
|
|
151
136
|
*
|
|
152
137
|
* @beta
|
|
153
138
|
*/
|
|
154
|
-
export interface
|
|
139
|
+
export interface IModuleConfigurationBase {
|
|
155
140
|
/**
|
|
156
141
|
* The type of the script block. `"component"` modules come from a component,
|
|
157
142
|
* `"path"` and `"localizedPath"` modules must be available on the paths provided in
|
|
@@ -188,7 +173,8 @@ export interface IModuleConfiguration {
|
|
|
188
173
|
*
|
|
189
174
|
* @beta
|
|
190
175
|
*/
|
|
191
|
-
export interface IComponentModuleConfiguration extends
|
|
176
|
+
export interface IComponentModuleConfiguration extends IModuleConfigurationBase {
|
|
177
|
+
type: 'component';
|
|
192
178
|
/**
|
|
193
179
|
* The version of the framework-supplied component to be loaded. For framework runtime component such as
|
|
194
180
|
* `@microsoft/sp-client-base`, it is recommended the version of the framework component the component was developed
|
|
@@ -224,7 +210,7 @@ export interface IComponentModuleConfiguration extends IModuleConfiguration {
|
|
|
224
210
|
*
|
|
225
211
|
* Example: `"https://code.jquery.com/jquery-2.2.4.min.js"`
|
|
226
212
|
*/
|
|
227
|
-
failoverPath?: string |
|
|
213
|
+
failoverPath?: string | IIntegrityPath;
|
|
228
214
|
}
|
|
229
215
|
/**
|
|
230
216
|
* This is the interface for a script module with the "path" type. Modules of this type must be provided by the
|
|
@@ -232,7 +218,8 @@ export interface IComponentModuleConfiguration extends IModuleConfiguration {
|
|
|
232
218
|
*
|
|
233
219
|
* @beta
|
|
234
220
|
*/
|
|
235
|
-
export interface IPathModuleConfiguration extends
|
|
221
|
+
export interface IPathModuleConfiguration extends IModuleConfigurationBase {
|
|
222
|
+
type: 'path';
|
|
236
223
|
/**
|
|
237
224
|
* A path to this module's javascript resource either as a fully-qualified URL or as a path under the
|
|
238
225
|
* paths provided in the `internalModuleBaseUrls` field.
|
|
@@ -253,7 +240,7 @@ export interface IPathModuleConfiguration extends IModuleConfiguration {
|
|
|
253
240
|
*
|
|
254
241
|
* Example: `"master_2015-04-20/my-application.bundle_1928f8a0.js"`
|
|
255
242
|
*/
|
|
256
|
-
path: string |
|
|
243
|
+
path: string | IIntegrityPath;
|
|
257
244
|
/**
|
|
258
245
|
* If this property is specified, this module is considered non-AMD and
|
|
259
246
|
* the module loader will not expect "define" or "require" to be called.
|
|
@@ -299,7 +286,8 @@ export interface IPathModuleConfiguration extends IModuleConfiguration {
|
|
|
299
286
|
*
|
|
300
287
|
* @beta
|
|
301
288
|
*/
|
|
302
|
-
export interface ILocalizedPathModuleConfiguration extends
|
|
289
|
+
export interface ILocalizedPathModuleConfiguration extends IModuleConfigurationBase {
|
|
290
|
+
type: 'localizedPath';
|
|
303
291
|
/**
|
|
304
292
|
* A path to this module's default locale javascript resource either as a fully-qualified URL or as a
|
|
305
293
|
* path under the paths provided in the "internalModuleBaseUrls" field.
|
|
@@ -314,7 +302,7 @@ export interface ILocalizedPathModuleConfiguration extends IModuleConfiguration
|
|
|
314
302
|
*
|
|
315
303
|
* Example: `"master_2015-04-20/my-application_strings_default_af378e0d.js"`
|
|
316
304
|
*/
|
|
317
|
-
defaultPath: string |
|
|
305
|
+
defaultPath: string | IIntegrityPath;
|
|
318
306
|
/**
|
|
319
307
|
* This is a dictionary of locale keys (in the `"ll-cc"` format) to paths to this module's locale
|
|
320
308
|
* javascript resource either as a fully-qualified URL or as a path under the paths provided in the
|
|
@@ -341,7 +329,7 @@ export interface ILocalizedPathModuleConfiguration extends IModuleConfiguration
|
|
|
341
329
|
* ```
|
|
342
330
|
*/
|
|
343
331
|
paths?: {
|
|
344
|
-
[locale: string]: string |
|
|
332
|
+
[locale: string]: string | IIntegrityPath;
|
|
345
333
|
};
|
|
346
334
|
}
|
|
347
335
|
//# sourceMappingURL=IClientSideComponentLoaderConfiguration.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IClientSideComponentLoaderConfiguration.d.ts","sourceRoot":"","sources":["../../src/manifestSchemas/IClientSideComponentLoaderConfiguration.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,MAAM,WAAW,uCAAuC;IACtD;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACH,sBAAsB,EAAE,MAAM,EAAE,CAAC;IAEjC;;;;;;;;;;;;OAYG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB;;;;;;;;;;;;;;;;;;OAkBG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA2CG;IACH,eAAe,EAAE;
|
|
1
|
+
{"version":3,"file":"IClientSideComponentLoaderConfiguration.d.ts","sourceRoot":"","sources":["../../src/manifestSchemas/IClientSideComponentLoaderConfiguration.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,MAAM,WAAW,uCAAuC;IACtD;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACH,sBAAsB,EAAE,MAAM,EAAE,CAAC;IAEjC;;;;;;;;;;;;OAYG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB;;;;;;;;;;;;;;;;;;OAkBG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA2CG;IACH,eAAe,EAAE;QACf,CAAC,IAAI,EAAE,MAAM,GAAG,oBAAoB,CAAC;KACtC,CAAC;CACH;AAED;;GAEG;AACH,oBAAY,oBAAoB,GAC5B,6BAA6B,GAC7B,wBAAwB,GACxB,iCAAiC,CAAC;AAEtC;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACvC;;;;;;;;;;;;;;;OAeG;IACH,IAAI,EAAE,WAAW,GAAG,MAAM,GAAG,eAAe,CAAC;IAE7C;;;;;;;;;;OAUG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B;AAED;;;;;GAKG;AACH,MAAM,WAAW,6BAA8B,SAAQ,wBAAwB;IAC7E,IAAI,EAAE,WAAW,CAAC;IAElB;;;;;;;;;;OAUG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;;;;;;;OAQG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;;;;;;;;;;;OAYG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,cAAc,CAAC;CACxC;AAED;;;;;GAKG;AACH,MAAM,WAAW,wBAAyB,SAAQ,wBAAwB;IACxE,IAAI,EAAE,MAAM,CAAC;IAEb;;;;;;;;;;;;;;;;;;;OAmBG;IACH,IAAI,EAAE,MAAM,GAAG,cAAc,CAAC;IAE9B;;;;;;;;;;;;;;;;OAgBG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;;;;;;;;;;;OAcG;IACH,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAC;CAC/B;AAED;;;;;;;;;GASG;AACH,MAAM,WAAW,iCAAkC,SAAQ,wBAAwB;IACjF,IAAI,EAAE,eAAe,CAAC;IAEtB;;;;;;;;;;;;;OAaG;IACH,WAAW,EAAE,MAAM,GAAG,cAAc,CAAC;IAErC;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,cAAc,CAAA;KAAE,CAAC;CACvD"}
|
|
@@ -228,7 +228,7 @@ export interface IClientSideWebPartManifestEntry<TProperties> {
|
|
|
228
228
|
* {
|
|
229
229
|
* "default": "A tool for displaying neat information.",
|
|
230
230
|
* "en-us": "A tool for displaying neat information.",
|
|
231
|
-
* "fr-fr": "Un outil d
|
|
231
|
+
* "fr-fr": "Un outil d'affichage des informations soignées.",
|
|
232
232
|
* "zh": "用於顯示整潔資訊的工具。"
|
|
233
233
|
* }
|
|
234
234
|
* ```
|
|
@@ -256,7 +256,7 @@ export interface IClientSideWebPartManifestEntry<TProperties> {
|
|
|
256
256
|
* this field must have a value. This value can be an absolute URL (e.g. `"http://example.com/icons/my-icon.png"`) or
|
|
257
257
|
* a relative file path (e.g. `"./icons/my-icon.png"`). In the latter case, the path will be resolved relative to
|
|
258
258
|
* the folder containing the input manifest. The icon file will be copied to the deployment folder like an asset,
|
|
259
|
-
* and the output manifest
|
|
259
|
+
* and the output manifest's iconImageUrl will be replaced with a URL relative to the URL used to load all other
|
|
260
260
|
* assets (the loaderConfig.internalModuleBaseUrls property).
|
|
261
261
|
*
|
|
262
262
|
* Supported values: Any absolute URL.
|
|
@@ -66,7 +66,7 @@ export interface ICommandDefinition {
|
|
|
66
66
|
* This value can be an absolute URL (e.g. "http://example.com/icons/my-icon.png") or
|
|
67
67
|
* a relative file path (e.g. "./icons/my-icon.png"). In the latter case, the path will be resolved relative to
|
|
68
68
|
* the folder containing the input manifest. The icon file will be copied to the deployment folder like an asset,
|
|
69
|
-
* and the output manifest
|
|
69
|
+
* and the output manifest's iconImageUrl will be replaced with a URL relative to the URL used to load all other
|
|
70
70
|
* assets (the loaderConfig.internalModuleBaseUrls property).
|
|
71
71
|
*/
|
|
72
72
|
iconImageUrl?: string;
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"version": "latest",
|
|
27
27
|
"id": "00000000-0000-0000-0000-000000000000",
|
|
28
28
|
"failoverPath": {
|
|
29
|
-
"
|
|
29
|
+
"path": "script.js"
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
"frameworkD": {
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"version": "latest",
|
|
35
35
|
"id": "00000000-0000-0000-0000-000000000000",
|
|
36
36
|
"failoverPath": {
|
|
37
|
-
"
|
|
38
|
-
"
|
|
37
|
+
"path": "script.js",
|
|
38
|
+
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC"
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
"frameworkE": {
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"version": "latest",
|
|
57
57
|
"id": "00000000-0000-0000-0000-000000000000",
|
|
58
58
|
"failoverPath": {
|
|
59
|
-
"
|
|
59
|
+
"path": "script.js"
|
|
60
60
|
},
|
|
61
61
|
"shouldNotPreload": true
|
|
62
62
|
},
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
"version": "latest",
|
|
66
66
|
"id": "00000000-0000-0000-0000-000000000000",
|
|
67
67
|
"failoverPath": {
|
|
68
|
-
"
|
|
69
|
-
"
|
|
68
|
+
"path": "script.js",
|
|
69
|
+
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC"
|
|
70
70
|
},
|
|
71
71
|
"shouldNotPreload": true
|
|
72
72
|
},
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"version": "latest",
|
|
89
89
|
"id": "00000000-0000-0000-0000-000000000000",
|
|
90
90
|
"failoverPath": {
|
|
91
|
-
"
|
|
91
|
+
"path": "script.js"
|
|
92
92
|
},
|
|
93
93
|
"shouldNotPreload": false
|
|
94
94
|
},
|
|
@@ -97,8 +97,8 @@
|
|
|
97
97
|
"version": "latest",
|
|
98
98
|
"id": "00000000-0000-0000-0000-000000000000",
|
|
99
99
|
"failoverPath": {
|
|
100
|
-
"
|
|
101
|
-
"
|
|
100
|
+
"path": "script.js",
|
|
101
|
+
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC"
|
|
102
102
|
},
|
|
103
103
|
"shouldNotPreload": false
|
|
104
104
|
},
|
|
@@ -109,14 +109,14 @@
|
|
|
109
109
|
"dependencyA": {
|
|
110
110
|
"type": "path",
|
|
111
111
|
"path": {
|
|
112
|
-
"
|
|
113
|
-
"
|
|
112
|
+
"path": "dependencyA.script.js",
|
|
113
|
+
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC"
|
|
114
114
|
}
|
|
115
115
|
},
|
|
116
116
|
"dependencyB": {
|
|
117
117
|
"type": "path",
|
|
118
118
|
"path": {
|
|
119
|
-
"
|
|
119
|
+
"path": "dependencyB.script.js"
|
|
120
120
|
}
|
|
121
121
|
},
|
|
122
122
|
"dependencyC": {
|
|
@@ -126,15 +126,15 @@
|
|
|
126
126
|
"dependencyD": {
|
|
127
127
|
"type": "path",
|
|
128
128
|
"path": {
|
|
129
|
-
"
|
|
130
|
-
"
|
|
129
|
+
"path": "dependencyD.script.js",
|
|
130
|
+
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC"
|
|
131
131
|
},
|
|
132
132
|
"shouldNotPreload": true
|
|
133
133
|
},
|
|
134
134
|
"dependencyE": {
|
|
135
135
|
"type": "path",
|
|
136
136
|
"path": {
|
|
137
|
-
"
|
|
137
|
+
"path": "dependencyE.script.js"
|
|
138
138
|
},
|
|
139
139
|
"shouldNotPreload": true
|
|
140
140
|
},
|
|
@@ -146,15 +146,15 @@
|
|
|
146
146
|
"dependencyG": {
|
|
147
147
|
"type": "path",
|
|
148
148
|
"path": {
|
|
149
|
-
"
|
|
150
|
-
"
|
|
149
|
+
"path": "dependencyG.script.js",
|
|
150
|
+
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC"
|
|
151
151
|
},
|
|
152
152
|
"shouldNotPreload": false
|
|
153
153
|
},
|
|
154
154
|
"dependencyH": {
|
|
155
155
|
"type": "path",
|
|
156
156
|
"path": {
|
|
157
|
-
"
|
|
157
|
+
"path": "dependencyH.script.js"
|
|
158
158
|
},
|
|
159
159
|
"shouldNotPreload": false
|
|
160
160
|
},
|
|
@@ -170,14 +170,14 @@
|
|
|
170
170
|
"stringsB": {
|
|
171
171
|
"type": "localizedPath",
|
|
172
172
|
"defaultPath": {
|
|
173
|
-
"
|
|
174
|
-
"
|
|
173
|
+
"path": "stringsB_default.js",
|
|
174
|
+
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC"
|
|
175
175
|
}
|
|
176
176
|
},
|
|
177
177
|
"stringsC": {
|
|
178
178
|
"type": "localizedPath",
|
|
179
179
|
"defaultPath": {
|
|
180
|
-
"
|
|
180
|
+
"path": "stringsC_default.js"
|
|
181
181
|
}
|
|
182
182
|
},
|
|
183
183
|
"stringsD": {
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"defaultPath": "stringsE_default.js",
|
|
194
194
|
"paths": {
|
|
195
195
|
"en-us": {
|
|
196
|
-
"
|
|
196
|
+
"path": "stringsE_en-us.js"
|
|
197
197
|
},
|
|
198
198
|
"fr-fr": "stringsE_fr-fr.js"
|
|
199
199
|
}
|
|
@@ -203,8 +203,8 @@
|
|
|
203
203
|
"defaultPath": "stringsF_default.js",
|
|
204
204
|
"paths": {
|
|
205
205
|
"en-us": {
|
|
206
|
-
"
|
|
207
|
-
"
|
|
206
|
+
"path": "stringsF_en-us.js",
|
|
207
|
+
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC"
|
|
208
208
|
},
|
|
209
209
|
"fr-fr": "stringsF_fr-fr.js"
|
|
210
210
|
}
|
|
@@ -217,15 +217,15 @@
|
|
|
217
217
|
"stringsH": {
|
|
218
218
|
"type": "localizedPath",
|
|
219
219
|
"defaultPath": {
|
|
220
|
-
"
|
|
221
|
-
"
|
|
220
|
+
"path": "stringsH_default.js",
|
|
221
|
+
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC"
|
|
222
222
|
},
|
|
223
223
|
"shouldNotPreload": true
|
|
224
224
|
},
|
|
225
225
|
"stringsI": {
|
|
226
226
|
"type": "localizedPath",
|
|
227
227
|
"defaultPath": {
|
|
228
|
-
"
|
|
228
|
+
"path": "stringsI_default.js"
|
|
229
229
|
},
|
|
230
230
|
"shouldNotPreload": true
|
|
231
231
|
},
|
|
@@ -243,7 +243,7 @@
|
|
|
243
243
|
"defaultPath": "stringsK_default.js",
|
|
244
244
|
"paths": {
|
|
245
245
|
"en-us": {
|
|
246
|
-
"
|
|
246
|
+
"path": "stringsK_en-us.js"
|
|
247
247
|
},
|
|
248
248
|
"fr-fr": "stringsK_fr-fr.js"
|
|
249
249
|
},
|
|
@@ -254,8 +254,8 @@
|
|
|
254
254
|
"defaultPath": "stringsL_default.js",
|
|
255
255
|
"paths": {
|
|
256
256
|
"en-us": {
|
|
257
|
-
"
|
|
258
|
-
"
|
|
257
|
+
"path": "stringsL_en-us.js",
|
|
258
|
+
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC"
|
|
259
259
|
},
|
|
260
260
|
"fr-fr": "stringsL_fr-fr.js"
|
|
261
261
|
},
|
|
@@ -269,15 +269,15 @@
|
|
|
269
269
|
"stringsN": {
|
|
270
270
|
"type": "localizedPath",
|
|
271
271
|
"defaultPath": {
|
|
272
|
-
"
|
|
273
|
-
"
|
|
272
|
+
"path": "stringsN_default.js",
|
|
273
|
+
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC"
|
|
274
274
|
},
|
|
275
275
|
"shouldNotPreload": false
|
|
276
276
|
},
|
|
277
277
|
"stringsO": {
|
|
278
278
|
"type": "localizedPath",
|
|
279
279
|
"defaultPath": {
|
|
280
|
-
"
|
|
280
|
+
"path": "stringsO_default.js"
|
|
281
281
|
},
|
|
282
282
|
"shouldNotPreload": false
|
|
283
283
|
},
|
|
@@ -295,7 +295,7 @@
|
|
|
295
295
|
"defaultPath": "stringsQ_default.js",
|
|
296
296
|
"paths": {
|
|
297
297
|
"en-us": {
|
|
298
|
-
"
|
|
298
|
+
"path": "stringsQ_en-us.js"
|
|
299
299
|
},
|
|
300
300
|
"fr-fr": "stringsQ_fr-fr.js"
|
|
301
301
|
},
|
|
@@ -306,8 +306,8 @@
|
|
|
306
306
|
"defaultPath": "stringsR_default.js",
|
|
307
307
|
"paths": {
|
|
308
308
|
"en-us": {
|
|
309
|
-
"
|
|
310
|
-
"
|
|
309
|
+
"path": "stringsR_en-us.js",
|
|
310
|
+
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC"
|
|
311
311
|
},
|
|
312
312
|
"fr-fr": "stringsR_fr-fr.js"
|
|
313
313
|
},
|
|
@@ -26,7 +26,7 @@ const appManifest = {
|
|
|
26
26
|
version: 'latest',
|
|
27
27
|
id: '00000000-0000-0000-0000-000000000000',
|
|
28
28
|
failoverPath: {
|
|
29
|
-
|
|
29
|
+
path: 'script.js'
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
frameworkD: {
|
|
@@ -34,8 +34,8 @@ const appManifest = {
|
|
|
34
34
|
version: 'latest',
|
|
35
35
|
id: '00000000-0000-0000-0000-000000000000',
|
|
36
36
|
failoverPath: {
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
path: 'script.js',
|
|
38
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
frameworkE: {
|
|
@@ -56,7 +56,7 @@ const appManifest = {
|
|
|
56
56
|
version: 'latest',
|
|
57
57
|
id: '00000000-0000-0000-0000-000000000000',
|
|
58
58
|
failoverPath: {
|
|
59
|
-
|
|
59
|
+
path: 'script.js'
|
|
60
60
|
},
|
|
61
61
|
shouldNotPreload: true
|
|
62
62
|
},
|
|
@@ -65,8 +65,8 @@ const appManifest = {
|
|
|
65
65
|
version: 'latest',
|
|
66
66
|
id: '00000000-0000-0000-0000-000000000000',
|
|
67
67
|
failoverPath: {
|
|
68
|
-
|
|
69
|
-
|
|
68
|
+
path: 'script.js',
|
|
69
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
70
70
|
},
|
|
71
71
|
shouldNotPreload: true
|
|
72
72
|
},
|
|
@@ -88,7 +88,7 @@ const appManifest = {
|
|
|
88
88
|
version: 'latest',
|
|
89
89
|
id: '00000000-0000-0000-0000-000000000000',
|
|
90
90
|
failoverPath: {
|
|
91
|
-
|
|
91
|
+
path: 'script.js'
|
|
92
92
|
},
|
|
93
93
|
shouldNotPreload: false
|
|
94
94
|
},
|
|
@@ -97,8 +97,8 @@ const appManifest = {
|
|
|
97
97
|
version: 'latest',
|
|
98
98
|
id: '00000000-0000-0000-0000-000000000000',
|
|
99
99
|
failoverPath: {
|
|
100
|
-
|
|
101
|
-
|
|
100
|
+
path: 'script.js',
|
|
101
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
102
102
|
},
|
|
103
103
|
shouldNotPreload: false
|
|
104
104
|
},
|
|
@@ -109,14 +109,14 @@ const appManifest = {
|
|
|
109
109
|
dependencyA: {
|
|
110
110
|
type: 'path',
|
|
111
111
|
path: {
|
|
112
|
-
|
|
113
|
-
|
|
112
|
+
path: 'dependencyA.script.js',
|
|
113
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
114
114
|
}
|
|
115
115
|
},
|
|
116
116
|
dependencyB: {
|
|
117
117
|
type: 'path',
|
|
118
118
|
path: {
|
|
119
|
-
|
|
119
|
+
path: 'dependencyB.script.js'
|
|
120
120
|
}
|
|
121
121
|
},
|
|
122
122
|
dependencyC: {
|
|
@@ -126,15 +126,15 @@ const appManifest = {
|
|
|
126
126
|
dependencyD: {
|
|
127
127
|
type: 'path',
|
|
128
128
|
path: {
|
|
129
|
-
|
|
130
|
-
|
|
129
|
+
path: 'dependencyD.script.js',
|
|
130
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
131
131
|
},
|
|
132
132
|
shouldNotPreload: true
|
|
133
133
|
},
|
|
134
134
|
dependencyE: {
|
|
135
135
|
type: 'path',
|
|
136
136
|
path: {
|
|
137
|
-
|
|
137
|
+
path: 'dependencyE.script.js'
|
|
138
138
|
},
|
|
139
139
|
shouldNotPreload: true
|
|
140
140
|
},
|
|
@@ -146,15 +146,15 @@ const appManifest = {
|
|
|
146
146
|
dependencyG: {
|
|
147
147
|
type: 'path',
|
|
148
148
|
path: {
|
|
149
|
-
|
|
150
|
-
|
|
149
|
+
path: 'dependencyG.script.js',
|
|
150
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
151
151
|
},
|
|
152
152
|
shouldNotPreload: false
|
|
153
153
|
},
|
|
154
154
|
dependencyH: {
|
|
155
155
|
type: 'path',
|
|
156
156
|
path: {
|
|
157
|
-
|
|
157
|
+
path: 'dependencyH.script.js'
|
|
158
158
|
},
|
|
159
159
|
shouldNotPreload: false
|
|
160
160
|
},
|
|
@@ -170,14 +170,14 @@ const appManifest = {
|
|
|
170
170
|
stringsB: {
|
|
171
171
|
type: 'localizedPath',
|
|
172
172
|
defaultPath: {
|
|
173
|
-
|
|
174
|
-
|
|
173
|
+
path: 'stringsB_default.js',
|
|
174
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
175
175
|
}
|
|
176
176
|
},
|
|
177
177
|
stringsC: {
|
|
178
178
|
type: 'localizedPath',
|
|
179
179
|
defaultPath: {
|
|
180
|
-
|
|
180
|
+
path: 'stringsC_default.js'
|
|
181
181
|
}
|
|
182
182
|
},
|
|
183
183
|
stringsD: {
|
|
@@ -193,7 +193,7 @@ const appManifest = {
|
|
|
193
193
|
defaultPath: 'stringsE_default.js',
|
|
194
194
|
paths: {
|
|
195
195
|
'en-us': {
|
|
196
|
-
|
|
196
|
+
path: 'stringsE_en-us.js'
|
|
197
197
|
},
|
|
198
198
|
'fr-fr': 'stringsE_fr-fr.js'
|
|
199
199
|
}
|
|
@@ -203,8 +203,8 @@ const appManifest = {
|
|
|
203
203
|
defaultPath: 'stringsF_default.js',
|
|
204
204
|
paths: {
|
|
205
205
|
'en-us': {
|
|
206
|
-
|
|
207
|
-
|
|
206
|
+
path: 'stringsF_en-us.js',
|
|
207
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
208
208
|
},
|
|
209
209
|
'fr-fr': 'stringsF_fr-fr.js'
|
|
210
210
|
}
|
|
@@ -217,15 +217,15 @@ const appManifest = {
|
|
|
217
217
|
stringsH: {
|
|
218
218
|
type: 'localizedPath',
|
|
219
219
|
defaultPath: {
|
|
220
|
-
|
|
221
|
-
|
|
220
|
+
path: 'stringsH_default.js',
|
|
221
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
222
222
|
},
|
|
223
223
|
shouldNotPreload: true
|
|
224
224
|
},
|
|
225
225
|
stringsI: {
|
|
226
226
|
type: 'localizedPath',
|
|
227
227
|
defaultPath: {
|
|
228
|
-
|
|
228
|
+
path: 'stringsI_default.js'
|
|
229
229
|
},
|
|
230
230
|
shouldNotPreload: true
|
|
231
231
|
},
|
|
@@ -243,7 +243,7 @@ const appManifest = {
|
|
|
243
243
|
defaultPath: 'stringsK_default.js',
|
|
244
244
|
paths: {
|
|
245
245
|
'en-us': {
|
|
246
|
-
|
|
246
|
+
path: 'stringsK_en-us.js'
|
|
247
247
|
},
|
|
248
248
|
'fr-fr': 'stringsK_fr-fr.js'
|
|
249
249
|
},
|
|
@@ -254,8 +254,8 @@ const appManifest = {
|
|
|
254
254
|
defaultPath: 'stringsL_default.js',
|
|
255
255
|
paths: {
|
|
256
256
|
'en-us': {
|
|
257
|
-
|
|
258
|
-
|
|
257
|
+
path: 'stringsL_en-us.js',
|
|
258
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
259
259
|
},
|
|
260
260
|
'fr-fr': 'stringsL_fr-fr.js'
|
|
261
261
|
},
|
|
@@ -269,15 +269,15 @@ const appManifest = {
|
|
|
269
269
|
stringsN: {
|
|
270
270
|
type: 'localizedPath',
|
|
271
271
|
defaultPath: {
|
|
272
|
-
|
|
273
|
-
|
|
272
|
+
path: 'stringsN_default.js',
|
|
273
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
274
274
|
},
|
|
275
275
|
shouldNotPreload: false
|
|
276
276
|
},
|
|
277
277
|
stringsO: {
|
|
278
278
|
type: 'localizedPath',
|
|
279
279
|
defaultPath: {
|
|
280
|
-
|
|
280
|
+
path: 'stringsO_default.js'
|
|
281
281
|
},
|
|
282
282
|
shouldNotPreload: false
|
|
283
283
|
},
|
|
@@ -295,7 +295,7 @@ const appManifest = {
|
|
|
295
295
|
defaultPath: 'stringsQ_default.js',
|
|
296
296
|
paths: {
|
|
297
297
|
'en-us': {
|
|
298
|
-
|
|
298
|
+
path: 'stringsQ_en-us.js'
|
|
299
299
|
},
|
|
300
300
|
'fr-fr': 'stringsQ_fr-fr.js'
|
|
301
301
|
},
|
|
@@ -306,8 +306,8 @@ const appManifest = {
|
|
|
306
306
|
defaultPath: 'stringsR_default.js',
|
|
307
307
|
paths: {
|
|
308
308
|
'en-us': {
|
|
309
|
-
|
|
310
|
-
|
|
309
|
+
path: 'stringsR_en-us.js',
|
|
310
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
311
311
|
},
|
|
312
312
|
'fr-fr': 'stringsR_fr-fr.js'
|
|
313
313
|
},
|