@microsoft/sp-module-interfaces 1.15.0-beta.1 → 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.
@@ -975,7 +975,8 @@ export declare interface ICommandSetExtensionManifest extends IClientSideExtensi
975
975
  *
976
976
  * @beta
977
977
  */
978
- export declare interface IComponentModuleConfiguration extends IModuleConfiguration {
978
+ export declare interface IComponentModuleConfiguration extends IModuleConfigurationBase {
979
+ type: 'component';
979
980
  /**
980
981
  * The version of the framework-supplied component to be loaded. For framework runtime component such as
981
982
  * `@microsoft/sp-client-base`, it is recommended the version of the framework component the component was developed
@@ -1011,7 +1012,23 @@ export declare interface IComponentModuleConfiguration extends IModuleConfigurat
1011
1012
  *
1012
1013
  * Example: `"https://code.jquery.com/jquery-2.2.4.min.js"`
1013
1014
  */
1014
- failoverPath?: string | IPath;
1015
+ failoverPath?: string | IIntegrityPath;
1016
+ }
1017
+
1018
+ /**
1019
+ * A path with the subresource integrity hash of the resource.
1020
+ *
1021
+ * @beta
1022
+ */
1023
+ export declare interface IIntegrityPath {
1024
+ /**
1025
+ * The path to the resource.
1026
+ */
1027
+ path: string;
1028
+ /**
1029
+ * The subresource integrity hash of the resource referenced in {@link IIntegrityPath.path}.
1030
+ */
1031
+ integrity?: string;
1015
1032
  }
1016
1033
 
1017
1034
  /**
@@ -1024,7 +1041,8 @@ export declare interface IComponentModuleConfiguration extends IModuleConfigurat
1024
1041
  *
1025
1042
  * @beta
1026
1043
  */
1027
- export declare interface ILocalizedPathModuleConfiguration extends IModuleConfiguration {
1044
+ export declare interface ILocalizedPathModuleConfiguration extends IModuleConfigurationBase {
1045
+ type: 'localizedPath';
1028
1046
  /**
1029
1047
  * A path to this module's default locale javascript resource either as a fully-qualified URL or as a
1030
1048
  * path under the paths provided in the "internalModuleBaseUrls" field.
@@ -1039,7 +1057,7 @@ export declare interface ILocalizedPathModuleConfiguration extends IModuleConfig
1039
1057
  *
1040
1058
  * Example: `"master_2015-04-20/my-application_strings_default_af378e0d.js"`
1041
1059
  */
1042
- defaultPath: string | IPath;
1060
+ defaultPath: string | IIntegrityPath;
1043
1061
  /**
1044
1062
  * This is a dictionary of locale keys (in the `"ll-cc"` format) to paths to this module's locale
1045
1063
  * javascript resource either as a fully-qualified URL or as a path under the paths provided in the
@@ -1066,7 +1084,7 @@ export declare interface ILocalizedPathModuleConfiguration extends IModuleConfig
1066
1084
  * ```
1067
1085
  */
1068
1086
  paths?: {
1069
- [locale: string]: string | IPath;
1087
+ [locale: string]: string | IIntegrityPath;
1070
1088
  };
1071
1089
  }
1072
1090
 
@@ -1116,12 +1134,17 @@ export declare interface ILocalizedString {
1116
1134
  [locale: string]: string | undefined;
1117
1135
  }
1118
1136
 
1137
+ /**
1138
+ * @beta
1139
+ */
1140
+ export declare type IModuleConfiguration = IComponentModuleConfiguration | IPathModuleConfiguration | ILocalizedPathModuleConfiguration;
1141
+
1119
1142
  /**
1120
1143
  * This is the base interface for a script module's definition.
1121
1144
  *
1122
1145
  * @beta
1123
1146
  */
1124
- export declare interface IModuleConfiguration {
1147
+ export declare interface IModuleConfigurationBase {
1125
1148
  /**
1126
1149
  * The type of the script block. `"component"` modules come from a component,
1127
1150
  * `"path"` and `"localizedPath"` modules must be available on the paths provided in
@@ -1153,48 +1176,14 @@ export declare interface IModuleConfiguration {
1153
1176
  shouldNotPreload?: boolean;
1154
1177
  }
1155
1178
 
1156
- /**
1157
- * This is the base interface for a set of debug and non-debug/minimized paths. The paths in this object are
1158
- * loaded in exactly the same way as any other internal path.
1159
- *
1160
- * @beta
1161
- */
1162
- export declare interface IPath {
1163
- /**
1164
- * A path to this module's javascript resource either as a fully-qualified URL or as a path under the
1165
- * paths provided in the "internalModuleBaseUrls" field. The script referenced by this field is loaded by default
1166
- * unless a debug version of the script is provided and explicitly requested.
1167
- *
1168
- * @remarks
1169
- *
1170
- * Supported values: The path to the default/non-debug script either as a fully-qualified URL or as a path under the
1171
- * paths provided in the "internalModuleBaseUrls" field.
1172
- *
1173
- * Example: `"master_2015-04-20/my-application.bundle_1928f8a0.js"`
1174
- */
1175
- default: string;
1176
- /**
1177
- * A path to this module's debug javascript resource either as a fully-qualified URL or as a path under
1178
- * the paths provided in the "internalModuleBaseUrls" field. The script referenced by this field is only loaded if
1179
- * it is present and debug scripts are explicitly requested.
1180
- *
1181
- * @remarks
1182
- *
1183
- * Supported values: The path to the debug script either as a fully-qualified URL or as a path under the
1184
- * paths provided in the `"internalModuleBaseUrls"` field.
1185
- *
1186
- * Example: `"master_2015-04-20/my-application.bundle_18182c39.debug.js"`
1187
- */
1188
- debug?: string;
1189
- }
1190
-
1191
1179
  /**
1192
1180
  * This is the interface for a script module with the "path" type. Modules of this type must be provided by the
1193
1181
  * component developer.
1194
1182
  *
1195
1183
  * @beta
1196
1184
  */
1197
- export declare interface IPathModuleConfiguration extends IModuleConfiguration {
1185
+ export declare interface IPathModuleConfiguration extends IModuleConfigurationBase {
1186
+ type: 'path';
1198
1187
  /**
1199
1188
  * A path to this module's javascript resource either as a fully-qualified URL or as a path under the
1200
1189
  * paths provided in the `internalModuleBaseUrls` field.
@@ -1215,7 +1204,7 @@ export declare interface IPathModuleConfiguration extends IModuleConfiguration {
1215
1204
  *
1216
1205
  * Example: `"master_2015-04-20/my-application.bundle_1928f8a0.js"`
1217
1206
  */
1218
- path: string | IPath;
1207
+ path: string | IIntegrityPath;
1219
1208
  /**
1220
1209
  * If this property is specified, this module is considered non-AMD and
1221
1210
  * the module loader will not expect "define" or "require" to be called.
@@ -564,6 +564,8 @@ export declare interface ICommandSetExtensionManifest extends IClientSideExtensi
564
564
 
565
565
  /* Excluded from this release type: IComponentModuleConfiguration */
566
566
 
567
+ /* Excluded from this release type: IIntegrityPath */
568
+
567
569
  /* Excluded from this release type: ILocalizedPathModuleConfiguration */
568
570
 
569
571
  /**
@@ -614,7 +616,7 @@ export declare interface ILocalizedString {
614
616
 
615
617
  /* Excluded from this release type: IModuleConfiguration */
616
618
 
617
- /* Excluded from this release type: IPath */
619
+ /* Excluded from this release type: IModuleConfigurationBase */
618
620
 
619
621
  /* Excluded from this release type: IPathModuleConfiguration */
620
622
 
@@ -975,7 +975,8 @@ export declare interface ICommandSetExtensionManifest extends IClientSideExtensi
975
975
  *
976
976
  * @beta
977
977
  */
978
- export declare interface IComponentModuleConfiguration extends IModuleConfiguration {
978
+ export declare interface IComponentModuleConfiguration extends IModuleConfigurationBase {
979
+ type: 'component';
979
980
  /**
980
981
  * The version of the framework-supplied component to be loaded. For framework runtime component such as
981
982
  * `@microsoft/sp-client-base`, it is recommended the version of the framework component the component was developed
@@ -1011,7 +1012,23 @@ export declare interface IComponentModuleConfiguration extends IModuleConfigurat
1011
1012
  *
1012
1013
  * Example: `"https://code.jquery.com/jquery-2.2.4.min.js"`
1013
1014
  */
1014
- failoverPath?: string | IPath;
1015
+ failoverPath?: string | IIntegrityPath;
1016
+ }
1017
+
1018
+ /**
1019
+ * A path with the subresource integrity hash of the resource.
1020
+ *
1021
+ * @beta
1022
+ */
1023
+ export declare interface IIntegrityPath {
1024
+ /**
1025
+ * The path to the resource.
1026
+ */
1027
+ path: string;
1028
+ /**
1029
+ * The subresource integrity hash of the resource referenced in {@link IIntegrityPath.path}.
1030
+ */
1031
+ integrity?: string;
1015
1032
  }
1016
1033
 
1017
1034
  /**
@@ -1024,7 +1041,8 @@ export declare interface IComponentModuleConfiguration extends IModuleConfigurat
1024
1041
  *
1025
1042
  * @beta
1026
1043
  */
1027
- export declare interface ILocalizedPathModuleConfiguration extends IModuleConfiguration {
1044
+ export declare interface ILocalizedPathModuleConfiguration extends IModuleConfigurationBase {
1045
+ type: 'localizedPath';
1028
1046
  /**
1029
1047
  * A path to this module's default locale javascript resource either as a fully-qualified URL or as a
1030
1048
  * path under the paths provided in the "internalModuleBaseUrls" field.
@@ -1039,7 +1057,7 @@ export declare interface ILocalizedPathModuleConfiguration extends IModuleConfig
1039
1057
  *
1040
1058
  * Example: `"master_2015-04-20/my-application_strings_default_af378e0d.js"`
1041
1059
  */
1042
- defaultPath: string | IPath;
1060
+ defaultPath: string | IIntegrityPath;
1043
1061
  /**
1044
1062
  * This is a dictionary of locale keys (in the `"ll-cc"` format) to paths to this module's locale
1045
1063
  * javascript resource either as a fully-qualified URL or as a path under the paths provided in the
@@ -1066,7 +1084,7 @@ export declare interface ILocalizedPathModuleConfiguration extends IModuleConfig
1066
1084
  * ```
1067
1085
  */
1068
1086
  paths?: {
1069
- [locale: string]: string | IPath;
1087
+ [locale: string]: string | IIntegrityPath;
1070
1088
  };
1071
1089
  }
1072
1090
 
@@ -1116,12 +1134,17 @@ export declare interface ILocalizedString {
1116
1134
  [locale: string]: string | undefined;
1117
1135
  }
1118
1136
 
1137
+ /**
1138
+ * @beta
1139
+ */
1140
+ export declare type IModuleConfiguration = IComponentModuleConfiguration | IPathModuleConfiguration | ILocalizedPathModuleConfiguration;
1141
+
1119
1142
  /**
1120
1143
  * This is the base interface for a script module's definition.
1121
1144
  *
1122
1145
  * @beta
1123
1146
  */
1124
- export declare interface IModuleConfiguration {
1147
+ export declare interface IModuleConfigurationBase {
1125
1148
  /**
1126
1149
  * The type of the script block. `"component"` modules come from a component,
1127
1150
  * `"path"` and `"localizedPath"` modules must be available on the paths provided in
@@ -1153,48 +1176,14 @@ export declare interface IModuleConfiguration {
1153
1176
  shouldNotPreload?: boolean;
1154
1177
  }
1155
1178
 
1156
- /**
1157
- * This is the base interface for a set of debug and non-debug/minimized paths. The paths in this object are
1158
- * loaded in exactly the same way as any other internal path.
1159
- *
1160
- * @beta
1161
- */
1162
- export declare interface IPath {
1163
- /**
1164
- * A path to this module's javascript resource either as a fully-qualified URL or as a path under the
1165
- * paths provided in the "internalModuleBaseUrls" field. The script referenced by this field is loaded by default
1166
- * unless a debug version of the script is provided and explicitly requested.
1167
- *
1168
- * @remarks
1169
- *
1170
- * Supported values: The path to the default/non-debug script either as a fully-qualified URL or as a path under the
1171
- * paths provided in the "internalModuleBaseUrls" field.
1172
- *
1173
- * Example: `"master_2015-04-20/my-application.bundle_1928f8a0.js"`
1174
- */
1175
- default: string;
1176
- /**
1177
- * A path to this module's debug javascript resource either as a fully-qualified URL or as a path under
1178
- * the paths provided in the "internalModuleBaseUrls" field. The script referenced by this field is only loaded if
1179
- * it is present and debug scripts are explicitly requested.
1180
- *
1181
- * @remarks
1182
- *
1183
- * Supported values: The path to the debug script either as a fully-qualified URL or as a path under the
1184
- * paths provided in the `"internalModuleBaseUrls"` field.
1185
- *
1186
- * Example: `"master_2015-04-20/my-application.bundle_18182c39.debug.js"`
1187
- */
1188
- debug?: string;
1189
- }
1190
-
1191
1179
  /**
1192
1180
  * This is the interface for a script module with the "path" type. Modules of this type must be provided by the
1193
1181
  * component developer.
1194
1182
  *
1195
1183
  * @beta
1196
1184
  */
1197
- export declare interface IPathModuleConfiguration extends IModuleConfiguration {
1185
+ export declare interface IPathModuleConfiguration extends IModuleConfigurationBase {
1186
+ type: 'path';
1198
1187
  /**
1199
1188
  * A path to this module's javascript resource either as a fully-qualified URL or as a path under the
1200
1189
  * paths provided in the `internalModuleBaseUrls` field.
@@ -1215,7 +1204,7 @@ export declare interface IPathModuleConfiguration extends IModuleConfiguration {
1215
1204
  *
1216
1205
  * Example: `"master_2015-04-20/my-application.bundle_1928f8a0.js"`
1217
1206
  */
1218
- path: string | IPath;
1207
+ path: string | IIntegrityPath;
1219
1208
  /**
1220
1209
  * If this property is specified, this module is considered non-AMD and
1221
1210
  * the module loader will not expect "define" or "require" to be called.
@@ -113,45 +113,30 @@ export interface IClientSideComponentLoaderConfiguration {
113
113
  };
114
114
  }
115
115
  /**
116
- * This is the base interface for a set of debug and non-debug/minimized paths. The paths in this object are
117
- * loaded in exactly the same way as any other internal path.
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 IPath {
124
+ export interface IIntegrityPath {
122
125
  /**
123
- * A path to this module's javascript resource either as a fully-qualified URL or as a path under the
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
- default: string;
128
+ path: string;
135
129
  /**
136
- * A path to this module's debug javascript resource either as a fully-qualified URL or as a path under
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
- debug?: string;
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 IModuleConfiguration {
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 IModuleConfiguration {
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 | IPath;
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 IModuleConfiguration {
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 | IPath;
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 IModuleConfiguration {
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 | IPath;
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 | IPath;
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;QAAE,CAAC,IAAI,EAAE,MAAM,GAAG,oBAAoB,CAAA;KAAE,CAAC;CAC3D;AAED;;;;;GAKG;AACH,MAAM,WAAW,KAAK;IACpB;;;;;;;;;;;OAWG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;;;;;;;;;;OAWG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACnC;;;;;;;;;;;;;;;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,oBAAoB;IACzE;;;;;;;;;;OAUG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;;;;;;;OAQG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;;;;;;;;;;;OAYG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC;CAC/B;AAED;;;;;GAKG;AACH,MAAM,WAAW,wBAAyB,SAAQ,oBAAoB;IACpE;;;;;;;;;;;;;;;;;;;OAmBG;IACH,IAAI,EAAE,MAAM,GAAG,KAAK,CAAC;IAErB;;;;;;;;;;;;;;;;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,oBAAoB;IAC7E;;;;;;;;;;;;;OAaG;IACH,WAAW,EAAE,MAAM,GAAG,KAAK,CAAC;IAE5B;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,KAAK,CAAA;KAAE,CAAC;CAC9C"}
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"}
@@ -26,7 +26,7 @@
26
26
  "version": "latest",
27
27
  "id": "00000000-0000-0000-0000-000000000000",
28
28
  "failoverPath": {
29
- "default": "script.js"
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
- "default": "script.js",
38
- "debug": "script.debug.js"
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
- "default": "script.js"
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
- "default": "script.js",
69
- "debug": "script.debug.js"
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
- "default": "script.js"
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
- "default": "script.js",
101
- "debug": "script.debug.js"
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
- "default": "dependencyA.script.js",
113
- "debug": "dependencyA.debug.script.js"
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
- "default": "dependencyB.script.js"
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
- "default": "dependencyD.script.js",
130
- "debug": "dependencyD.debug.script.js"
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
- "default": "dependencyE.script.js"
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
- "default": "dependencyG.script.js",
150
- "debug": "dependencyG.debug.script.js"
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
- "default": "dependencyH.script.js"
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
- "default": "stringsB_default.js",
174
- "debug": "stringsB_default.debug.js"
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
- "default": "stringsC_default.js"
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
- "default": "stringsE_en-us.js"
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
- "default": "stringsF_en-us.js",
207
- "debug": "stringsF_en-us.debug.js"
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
- "default": "stringsH_default.js",
221
- "debug": "stringsH_default.debug.js"
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
- "default": "stringsI_default.js"
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
- "default": "stringsK_en-us.js"
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
- "default": "stringsL_en-us.js",
258
- "debug": "stringsL_en-us.debug.js"
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
- "default": "stringsN_default.js",
273
- "debug": "stringsN_default.debug.js"
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
- "default": "stringsO_default.js"
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
- "default": "stringsQ_en-us.js"
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
- "default": "stringsR_en-us.js",
310
- "debug": "stringsR_en-us.debug.js"
309
+ "path": "stringsR_en-us.js",
310
+ "integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC"
311
311
  },
312
312
  "fr-fr": "stringsR_fr-fr.js"
313
313
  },