@adobe/ccweb-add-on-manifest 0.1.0
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/LICENSE +21 -0
- package/README.md +11 -0
- package/dist/AddOnManifest.d.ts +86 -0
- package/dist/AddOnManifest.d.ts.map +1 -0
- package/dist/AddOnManifest.js +140 -0
- package/dist/AddOnManifest.js.map +1 -0
- package/dist/AddOnManifestTypes.d.ts +165 -0
- package/dist/AddOnManifestTypes.d.ts.map +1 -0
- package/dist/AddOnManifestTypes.js +82 -0
- package/dist/AddOnManifestTypes.js.map +1 -0
- package/dist/AddOnManifestValidator.d.ts +38 -0
- package/dist/AddOnManifestValidator.d.ts.map +1 -0
- package/dist/AddOnManifestValidator.js +190 -0
- package/dist/AddOnManifestValidator.js.map +1 -0
- package/dist/ValidationUtils.d.ts +29 -0
- package/dist/ValidationUtils.d.ts.map +1 -0
- package/dist/ValidationUtils.js +59 -0
- package/dist/ValidationUtils.js.map +1 -0
- package/dist/generated/validateManifestSchema.d.mts +19 -0
- package/dist/generated/validateManifestSchema.d.mts.map +1 -0
- package/dist/generated/validateManifestSchema.mjs +2934 -0
- package/dist/generated/validateManifestSchema.mjs.map +1 -0
- package/dist/index.d.ts +29 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +29 -0
- package/dist/index.js.map +1 -0
- package/dist/manifest-field/AddOnManifestApp.d.ts +36 -0
- package/dist/manifest-field/AddOnManifestApp.d.ts.map +1 -0
- package/dist/manifest-field/AddOnManifestApp.js +43 -0
- package/dist/manifest-field/AddOnManifestApp.js.map +1 -0
- package/dist/manifest-field/AddOnManifestEntrypoint.d.ts +48 -0
- package/dist/manifest-field/AddOnManifestEntrypoint.d.ts.map +1 -0
- package/dist/manifest-field/AddOnManifestEntrypoint.js +90 -0
- package/dist/manifest-field/AddOnManifestEntrypoint.js.map +1 -0
- package/dist/manifest-field/AddOnManifestRequirement.d.ts +48 -0
- package/dist/manifest-field/AddOnManifestRequirement.d.ts.map +1 -0
- package/dist/manifest-field/AddOnManifestRequirement.js +106 -0
- package/dist/manifest-field/AddOnManifestRequirement.js.map +1 -0
- package/dist/test/utils/TestManifests.d.ts +52 -0
- package/dist/test/utils/TestManifests.d.ts.map +1 -0
- package/dist/test/utils/TestManifests.js +185 -0
- package/dist/test/utils/TestManifests.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +53 -0
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
/********************************************************************************
|
|
2
|
+
* MIT License
|
|
3
|
+
|
|
4
|
+
* © Copyright 2023 Adobe. All rights reserved.
|
|
5
|
+
|
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
* of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
* in the Software without restriction, including without limitation the rights
|
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
* furnished to do so, subject to the following conditions:
|
|
12
|
+
*
|
|
13
|
+
* The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
* copies or substantial portions of the Software.
|
|
15
|
+
*
|
|
16
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
* SOFTWARE.
|
|
23
|
+
********************************************************************************/
|
|
24
|
+
import { ManifestVersion } from "../AddOnManifest.js";
|
|
25
|
+
import { AddOnManifestApp } from "./AddOnManifestApp.js";
|
|
26
|
+
/**
|
|
27
|
+
* Defines the getter methods for Manifest Requirement field
|
|
28
|
+
*/
|
|
29
|
+
export class AddOnManifestRequirement {
|
|
30
|
+
_manifestVersion;
|
|
31
|
+
_requirements;
|
|
32
|
+
_apps = [];
|
|
33
|
+
constructor(_manifestVersion, _requirements) {
|
|
34
|
+
this._manifestVersion = _manifestVersion;
|
|
35
|
+
this._requirements = _requirements;
|
|
36
|
+
switch (this._manifestVersion) {
|
|
37
|
+
case ManifestVersion.V1: {
|
|
38
|
+
this._requirements = this._requirements;
|
|
39
|
+
break;
|
|
40
|
+
}
|
|
41
|
+
default: {
|
|
42
|
+
this._requirements = this._requirements;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
// TODO: [WXP-1700] Return apps as AddOnManifestApp[] for all manifest versions
|
|
47
|
+
get apps() {
|
|
48
|
+
switch (this._manifestVersion) {
|
|
49
|
+
case ManifestVersion.V1: {
|
|
50
|
+
return this._requirements.apps;
|
|
51
|
+
}
|
|
52
|
+
default: {
|
|
53
|
+
if (!this._apps.length) {
|
|
54
|
+
this._requirements.apps.forEach(app => {
|
|
55
|
+
this._apps.push(new AddOnManifestApp(app));
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
return this._apps;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
get experimentalApis() {
|
|
63
|
+
return Boolean(this._requirements.experimentalApis);
|
|
64
|
+
}
|
|
65
|
+
get supportsTouch() {
|
|
66
|
+
switch (this._manifestVersion) {
|
|
67
|
+
case ManifestVersion.V1: {
|
|
68
|
+
return false;
|
|
69
|
+
}
|
|
70
|
+
default: {
|
|
71
|
+
return Boolean(this._requirements.supportsTouch);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
get renditionPreview() {
|
|
76
|
+
switch (this._manifestVersion) {
|
|
77
|
+
case ManifestVersion.V1: {
|
|
78
|
+
return false;
|
|
79
|
+
}
|
|
80
|
+
default: {
|
|
81
|
+
return Boolean(this._requirements.renditionPreview);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
get privilegedApis() {
|
|
86
|
+
switch (this._manifestVersion) {
|
|
87
|
+
case ManifestVersion.V1: {
|
|
88
|
+
return false;
|
|
89
|
+
}
|
|
90
|
+
default: {
|
|
91
|
+
return Boolean(this._requirements.privilegedApis);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
get _blessedPartnerAccess() {
|
|
96
|
+
switch (this._manifestVersion) {
|
|
97
|
+
case ManifestVersion.V1: {
|
|
98
|
+
return undefined;
|
|
99
|
+
}
|
|
100
|
+
default: {
|
|
101
|
+
return this._requirements._blessedPartnerAccess;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
//# sourceMappingURL=AddOnManifestRequirement.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AddOnManifestRequirement.js","sourceRoot":"","sources":["../../src/manifest-field/AddOnManifestRequirement.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;kFAsBkF;AAElF,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAEtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AASzD;;GAEG;AACH,MAAM,OAAO,wBAAwB;IAGb;IAAkC;IAF9C,KAAK,GAAuB,EAAE,CAAC;IAEvC,YAAoB,gBAAwB,EAAU,aAAmC;QAArE,qBAAgB,GAAhB,gBAAgB,CAAQ;QAAU,kBAAa,GAAb,aAAa,CAAsB;QACrF,QAAQ,IAAI,CAAC,gBAAgB,EAAE;YAC3B,KAAK,eAAe,CAAC,EAAE,CAAC,CAAC;gBACrB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,aAA4D,CAAC;gBACvF,MAAM;aACT;YACD,OAAO,CAAC,CAAC;gBACL,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,aAA4D,CAAC;aAC1F;SACJ;IACL,CAAC;IAED,+EAA+E;IAC/E,IAAI,IAAI;QACJ,QAAQ,IAAI,CAAC,gBAAgB,EAAE;YAC3B,KAAK,eAAe,CAAC,EAAE,CAAC,CAAC;gBACrB,OAAQ,IAAI,CAAC,aAA6D,CAAC,IAAI,CAAC;aACnF;YACD,OAAO,CAAC,CAAC;gBACL,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE;oBACpB,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;wBAClC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,gBAAgB,CAAC,GAAU,CAAC,CAAC,CAAC;oBACtD,CAAC,CAAC,CAAC;iBACN;gBACD,OAAO,IAAI,CAAC,KAAK,CAAC;aACrB;SACJ;IACL,CAAC;IAED,IAAI,gBAAgB;QAChB,OAAO,OAAO,CAAC,IAAI,CAAC,aAAa,CAAC,gBAAgB,CAAC,CAAC;IACxD,CAAC;IAED,IAAI,aAAa;QACb,QAAQ,IAAI,CAAC,gBAAgB,EAAE;YAC3B,KAAK,eAAe,CAAC,EAAE,CAAC,CAAC;gBACrB,OAAO,KAAK,CAAC;aAChB;YACD,OAAO,CAAC,CAAC;gBACL,OAAO,OAAO,CAAE,IAAI,CAAC,aAA6D,CAAC,aAAa,CAAC,CAAC;aACrG;SACJ;IACL,CAAC;IAED,IAAI,gBAAgB;QAChB,QAAQ,IAAI,CAAC,gBAAgB,EAAE;YAC3B,KAAK,eAAe,CAAC,EAAE,CAAC,CAAC;gBACrB,OAAO,KAAK,CAAC;aAChB;YACD,OAAO,CAAC,CAAC;gBACL,OAAO,OAAO,CAAE,IAAI,CAAC,aAA6D,CAAC,gBAAgB,CAAC,CAAC;aACxG;SACJ;IACL,CAAC;IACD,IAAI,cAAc;QACd,QAAQ,IAAI,CAAC,gBAAgB,EAAE;YAC3B,KAAK,eAAe,CAAC,EAAE,CAAC,CAAC;gBACrB,OAAO,KAAK,CAAC;aAChB;YACD,OAAO,CAAC,CAAC;gBACL,OAAO,OAAO,CAAE,IAAI,CAAC,aAA6D,CAAC,cAAc,CAAC,CAAC;aACtG;SACJ;IACL,CAAC;IACD,IAAI,qBAAqB;QACrB,QAAQ,IAAI,CAAC,gBAAgB,EAAE;YAC3B,KAAK,eAAe,CAAC,EAAE,CAAC,CAAC;gBACrB,OAAO,SAAS,CAAC;aACpB;YACD,OAAO,CAAC,CAAC;gBACL,OAAQ,IAAI,CAAC,aAA6D,CAAC,qBAAqB,CAAC;aACpG;SACJ;IACL,CAAC;CACJ"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/********************************************************************************
|
|
2
|
+
* MIT License
|
|
3
|
+
|
|
4
|
+
* © Copyright 2023 Adobe. All rights reserved.
|
|
5
|
+
|
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
* of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
* in the Software without restriction, including without limitation the rights
|
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
* furnished to do so, subject to the following conditions:
|
|
12
|
+
*
|
|
13
|
+
* The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
* copies or substantial portions of the Software.
|
|
15
|
+
*
|
|
16
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
* SOFTWARE.
|
|
23
|
+
********************************************************************************/
|
|
24
|
+
import { AddOnManifestV1, AddOnManifestV2 } from "../../AddOnManifest.js";
|
|
25
|
+
import { AuthorInfo, IconType, LocalisedStrings, ManifestEntrypoint, RequirementsV1 } from "../../AddOnManifestTypes.js";
|
|
26
|
+
/**
|
|
27
|
+
* Specifies the metadata and configuration information for Developer Add-Ons
|
|
28
|
+
*/
|
|
29
|
+
export declare type AddOnManifestDeveloperV1 = {
|
|
30
|
+
readonly id: string;
|
|
31
|
+
readonly name?: string | LocalisedStrings;
|
|
32
|
+
readonly version?: string;
|
|
33
|
+
readonly manifestVersion?: number;
|
|
34
|
+
readonly requirements?: RequirementsV1;
|
|
35
|
+
readonly icon?: IconType | readonly IconType[];
|
|
36
|
+
readonly entryPoints: readonly ManifestEntrypoint[];
|
|
37
|
+
readonly strings?: string | Record<string, LocalisedStrings>;
|
|
38
|
+
readonly externalURL?: string;
|
|
39
|
+
readonly authorInfo?: AuthorInfo;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Specifies the metadata and configuration information for Developer Add-Ons
|
|
43
|
+
*/
|
|
44
|
+
export declare type AddOnManifestDeveloperV2 = AddOnManifestV2;
|
|
45
|
+
export declare type AddOnManifestDeveloper = AddOnManifestDeveloperV1 | AddOnManifestDeveloperV2;
|
|
46
|
+
export declare function getTestManifest(): AddOnManifestV1;
|
|
47
|
+
export declare function getTestManifestV1(privileged?: boolean): AddOnManifestV1;
|
|
48
|
+
export declare function getTestManifestV2(privileged?: boolean): AddOnManifestV2;
|
|
49
|
+
export declare function getTestDeveloperManifestV1(): AddOnManifestDeveloperV1;
|
|
50
|
+
export declare function getTestDeveloperManifestV2(privileged?: boolean): AddOnManifestDeveloperV2;
|
|
51
|
+
export declare function getTestManifestV2WithScript(script?: string | undefined): AddOnManifestV2;
|
|
52
|
+
//# sourceMappingURL=TestManifests.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TestManifests.d.ts","sourceRoot":"","sources":["../../../src/test/utils/TestManifests.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;kFAsBkF;AAElF,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC1E,OAAO,EACH,UAAU,EAEV,QAAQ,EACR,gBAAgB,EAChB,kBAAkB,EAClB,cAAc,EACjB,MAAM,6BAA6B,CAAC;AAIrC;;GAEG;AACH,oBAAY,wBAAwB,GAAG;IACnC,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,gBAAgB,CAAC;IAC1C,QAAQ,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,eAAe,CAAC,EAAE,MAAM,CAAC;IAClC,QAAQ,CAAC,YAAY,CAAC,EAAE,cAAc,CAAC;IACvC,QAAQ,CAAC,IAAI,CAAC,EAAE,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC;IAC/C,QAAQ,CAAC,WAAW,EAAE,SAAS,kBAAkB,EAAE,CAAC;IACpD,QAAQ,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC;IAC7D,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,UAAU,CAAC,EAAE,UAAU,CAAC;CACpC,CAAC;AAEF;;GAEG;AACH,oBAAY,wBAAwB,GAAG,eAAe,CAAC;AAEvD,oBAAY,sBAAsB,GAAG,wBAAwB,GAAG,wBAAwB,CAAC;AAEzF,wBAAgB,eAAe,IAAI,eAAe,CA+BjD;AAED,wBAAgB,iBAAiB,CAAC,UAAU,CAAC,EAAE,OAAO,GAAG,eAAe,CAqDvE;AAED,wBAAgB,iBAAiB,CAAC,UAAU,CAAC,EAAE,OAAO,GAAG,eAAe,CAiCvE;AAED,wBAAgB,0BAA0B,IAAI,wBAAwB,CAuBrE;AAED,wBAAgB,0BAA0B,CAAC,UAAU,CAAC,EAAE,OAAO,GAAG,wBAAwB,CAEzF;AAED,wBAAgB,2BAA2B,CAAC,MAAM,GAAE,MAAM,GAAG,SAAqB,GAAG,eAAe,CAcnG"}
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
/********************************************************************************
|
|
2
|
+
* MIT License
|
|
3
|
+
|
|
4
|
+
* © Copyright 2023 Adobe. All rights reserved.
|
|
5
|
+
|
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
* of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
* in the Software without restriction, including without limitation the rights
|
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
* furnished to do so, subject to the following conditions:
|
|
12
|
+
*
|
|
13
|
+
* The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
* copies or substantial portions of the Software.
|
|
15
|
+
*
|
|
16
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
* SOFTWARE.
|
|
23
|
+
********************************************************************************/
|
|
24
|
+
import { EntrypointType } from "../../AddOnManifestTypes.js";
|
|
25
|
+
let count = 0;
|
|
26
|
+
export function getTestManifest() {
|
|
27
|
+
const manifest = {
|
|
28
|
+
name: "name",
|
|
29
|
+
id: "id",
|
|
30
|
+
version: "version",
|
|
31
|
+
manifestVersion: 1,
|
|
32
|
+
requirements: {
|
|
33
|
+
apps: ["Express"]
|
|
34
|
+
},
|
|
35
|
+
entryPoints: [
|
|
36
|
+
{
|
|
37
|
+
type: EntrypointType.PANEL,
|
|
38
|
+
id: "entrypointId",
|
|
39
|
+
main: "index.html",
|
|
40
|
+
label: {
|
|
41
|
+
default: "defaultLabel"
|
|
42
|
+
},
|
|
43
|
+
permissions: { sandbox: [] }
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
icon: [
|
|
47
|
+
{
|
|
48
|
+
width: 300,
|
|
49
|
+
height: 300,
|
|
50
|
+
href: "icon3.png",
|
|
51
|
+
theme: ["light"]
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
};
|
|
55
|
+
return manifest;
|
|
56
|
+
}
|
|
57
|
+
export function getTestManifestV1(privileged) {
|
|
58
|
+
count++;
|
|
59
|
+
const manifest = {
|
|
60
|
+
name: `#testId${count}`,
|
|
61
|
+
id: `#testId${count}`,
|
|
62
|
+
version: `#testId${count}`,
|
|
63
|
+
manifestVersion: 1,
|
|
64
|
+
requirements: {
|
|
65
|
+
apps: ["Express"],
|
|
66
|
+
experimentalApis: false
|
|
67
|
+
},
|
|
68
|
+
entryPoints: [
|
|
69
|
+
{
|
|
70
|
+
type: EntrypointType.PANEL,
|
|
71
|
+
id: `#testId${count}`,
|
|
72
|
+
main: "index.html",
|
|
73
|
+
label: {
|
|
74
|
+
default: `#testId${count}`,
|
|
75
|
+
"en-US": `#testId${count}`,
|
|
76
|
+
"fr-FR": `#testId${count}`
|
|
77
|
+
},
|
|
78
|
+
permissions: privileged ? { sandbox: ["allow-downloads"] } : { sandbox: [] },
|
|
79
|
+
defaultSize: { width: 100 + count, height: 100 + count }
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
icon: [
|
|
83
|
+
{
|
|
84
|
+
width: 100,
|
|
85
|
+
height: 100,
|
|
86
|
+
href: "icon.png",
|
|
87
|
+
theme: ["lightest"]
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
width: 200,
|
|
91
|
+
height: 200,
|
|
92
|
+
href: "icon2.png",
|
|
93
|
+
theme: ["darkest"]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
width: 300,
|
|
97
|
+
height: 300,
|
|
98
|
+
href: "icon3.png",
|
|
99
|
+
theme: ["light"],
|
|
100
|
+
scale: [1, 1.25, 1.5]
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
authorInfo: {
|
|
104
|
+
name: "Joe",
|
|
105
|
+
email: "Joe@example.com"
|
|
106
|
+
}
|
|
107
|
+
};
|
|
108
|
+
return manifest;
|
|
109
|
+
}
|
|
110
|
+
export function getTestManifestV2(privileged) {
|
|
111
|
+
const manifest = {
|
|
112
|
+
version: `1.1.${count}`,
|
|
113
|
+
testId: "testId-V2",
|
|
114
|
+
manifestVersion: 2,
|
|
115
|
+
requirements: {
|
|
116
|
+
apps: [
|
|
117
|
+
{
|
|
118
|
+
name: "Express",
|
|
119
|
+
apiVersion: 1,
|
|
120
|
+
supportedDeviceClass: ["mobile"]
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
name: "Express",
|
|
124
|
+
apiVersion: 2
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
experimentalApis: false,
|
|
128
|
+
supportsTouch: true,
|
|
129
|
+
renditionPreview: true,
|
|
130
|
+
privilegedApis: privileged ?? false,
|
|
131
|
+
_blessedPartnerAccess: "blessedPartnerAccess"
|
|
132
|
+
},
|
|
133
|
+
entryPoints: [
|
|
134
|
+
{
|
|
135
|
+
type: EntrypointType.PANEL,
|
|
136
|
+
id: `#testId${count}`,
|
|
137
|
+
main: "index.html",
|
|
138
|
+
permissions: privileged ? { sandbox: ["allow-downloads"], analytics: true } : { sandbox: [] }
|
|
139
|
+
}
|
|
140
|
+
]
|
|
141
|
+
};
|
|
142
|
+
return manifest;
|
|
143
|
+
}
|
|
144
|
+
export function getTestDeveloperManifestV1() {
|
|
145
|
+
const manifest = {
|
|
146
|
+
id: `#testId${count}`,
|
|
147
|
+
manifestVersion: 1,
|
|
148
|
+
requirements: {
|
|
149
|
+
apps: ["Express"],
|
|
150
|
+
experimentalApis: true
|
|
151
|
+
},
|
|
152
|
+
entryPoints: [
|
|
153
|
+
{
|
|
154
|
+
type: EntrypointType.PANEL,
|
|
155
|
+
id: `#testId${count}`,
|
|
156
|
+
main: "index.html",
|
|
157
|
+
label: {
|
|
158
|
+
default: `#testId${count}`,
|
|
159
|
+
"en-US": `#testId${count}`,
|
|
160
|
+
"fr-FR": `#testId${count}`
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
]
|
|
164
|
+
};
|
|
165
|
+
return manifest;
|
|
166
|
+
}
|
|
167
|
+
export function getTestDeveloperManifestV2(privileged) {
|
|
168
|
+
return getTestManifestV2(privileged);
|
|
169
|
+
}
|
|
170
|
+
export function getTestManifestV2WithScript(script = undefined) {
|
|
171
|
+
const manifest = {
|
|
172
|
+
...getTestManifestV2(),
|
|
173
|
+
entryPoints: [
|
|
174
|
+
{
|
|
175
|
+
type: EntrypointType.PANEL,
|
|
176
|
+
id: `#testId${count}`,
|
|
177
|
+
main: "index.html",
|
|
178
|
+
script,
|
|
179
|
+
permissions: { sandbox: [] }
|
|
180
|
+
}
|
|
181
|
+
]
|
|
182
|
+
};
|
|
183
|
+
return manifest;
|
|
184
|
+
}
|
|
185
|
+
//# sourceMappingURL=TestManifests.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TestManifests.js","sourceRoot":"","sources":["../../../src/test/utils/TestManifests.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;kFAsBkF;AAGlF,OAAO,EAEH,cAAc,EAKjB,MAAM,6BAA6B,CAAC;AAErC,IAAI,KAAK,GAAG,CAAC,CAAC;AAyBd,MAAM,UAAU,eAAe;IAC3B,MAAM,QAAQ,GAAG;QACb,IAAI,EAAE,MAAM;QACZ,EAAE,EAAE,IAAI;QACR,OAAO,EAAE,SAAS;QAClB,eAAe,EAAE,CAAC;QAClB,YAAY,EAAE;YACV,IAAI,EAAE,CAAC,SAAS,CAAC;SACpB;QACD,WAAW,EAAE;YACT;gBACI,IAAI,EAAE,cAAc,CAAC,KAAK;gBAC1B,EAAE,EAAE,cAAc;gBAClB,IAAI,EAAE,YAAY;gBAClB,KAAK,EAAE;oBACH,OAAO,EAAE,cAAc;iBAC1B;gBACD,WAAW,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE;aAC/B;SACJ;QACD,IAAI,EAAE;YACF;gBACI,KAAK,EAAE,GAAG;gBACV,MAAM,EAAE,GAAG;gBACX,IAAI,EAAE,WAAW;gBACjB,KAAK,EAAE,CAAC,OAAO,CAAC;aACnB;SACJ;KACJ,CAAC;IAEF,OAAO,QAAQ,CAAC;AACpB,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,UAAoB;IAClD,KAAK,EAAE,CAAC;IACR,MAAM,QAAQ,GAAG;QACb,IAAI,EAAE,UAAU,KAAK,EAAE;QACvB,EAAE,EAAE,UAAU,KAAK,EAAE;QACrB,OAAO,EAAE,UAAU,KAAK,EAAE;QAC1B,eAAe,EAAE,CAAC;QAClB,YAAY,EAAE;YACV,IAAI,EAAE,CAAC,SAAS,CAAC;YACjB,gBAAgB,EAAE,KAAK;SAC1B;QACD,WAAW,EAAE;YACT;gBACI,IAAI,EAAE,cAAc,CAAC,KAAK;gBAC1B,EAAE,EAAE,UAAU,KAAK,EAAE;gBACrB,IAAI,EAAE,YAAY;gBAClB,KAAK,EAAE;oBACH,OAAO,EAAE,UAAU,KAAK,EAAE;oBAC1B,OAAO,EAAE,UAAU,KAAK,EAAE;oBAC1B,OAAO,EAAE,UAAU,KAAK,EAAE;iBAC7B;gBACD,WAAW,EAAE,UAAU,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,EAAE,EAAE;gBAC5E,WAAW,EAAE,EAAE,KAAK,EAAE,GAAG,GAAG,KAAK,EAAE,MAAM,EAAE,GAAG,GAAG,KAAK,EAAE;aAC3D;SACJ;QACD,IAAI,EAAE;YACF;gBACI,KAAK,EAAE,GAAG;gBACV,MAAM,EAAE,GAAG;gBACX,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,CAAC,UAAU,CAAC;aACtB;YACD;gBACI,KAAK,EAAE,GAAG;gBACV,MAAM,EAAE,GAAG;gBACX,IAAI,EAAE,WAAW;gBACjB,KAAK,EAAE,CAAC,SAAS,CAAC;aACrB;YACD;gBACI,KAAK,EAAE,GAAG;gBACV,MAAM,EAAE,GAAG;gBACX,IAAI,EAAE,WAAW;gBACjB,KAAK,EAAE,CAAC,OAAO,CAAC;gBAChB,KAAK,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC;aACxB;SACJ;QACD,UAAU,EAAE;YACR,IAAI,EAAE,KAAK;YACX,KAAK,EAAE,iBAAiB;SAC3B;KACJ,CAAC;IAEF,OAAO,QAAQ,CAAC;AACpB,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,UAAoB;IAClD,MAAM,QAAQ,GAAG;QACb,OAAO,EAAE,OAAO,KAAK,EAAE;QACvB,MAAM,EAAE,WAAW;QACnB,eAAe,EAAE,CAAC;QAClB,YAAY,EAAE;YACV,IAAI,EAAE;gBACF;oBACI,IAAI,EAAE,SAAS;oBACf,UAAU,EAAE,CAAC;oBACb,oBAAoB,EAAE,CAAC,QAAQ,CAAC;iBACnC;gBACD;oBACI,IAAI,EAAE,SAAS;oBACf,UAAU,EAAE,CAAC;iBAChB;aACJ;YACD,gBAAgB,EAAE,KAAK;YACvB,aAAa,EAAE,IAAI;YACnB,gBAAgB,EAAE,IAAI;YACtB,cAAc,EAAE,UAAU,IAAI,KAAK;YACnC,qBAAqB,EAAE,sBAAsB;SAChD;QACD,WAAW,EAAE;YACT;gBACI,IAAI,EAAE,cAAc,CAAC,KAAK;gBAC1B,EAAE,EAAE,UAAU,KAAK,EAAE;gBACrB,IAAI,EAAE,YAAY;gBAClB,WAAW,EAAE,UAAU,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,EAAE,EAAE;aAChG;SACJ;KACJ,CAAC;IACF,OAAO,QAAQ,CAAC;AACpB,CAAC;AAED,MAAM,UAAU,0BAA0B;IACtC,MAAM,QAAQ,GAAG;QACb,EAAE,EAAE,UAAU,KAAK,EAAE;QACrB,eAAe,EAAE,CAAC;QAClB,YAAY,EAAE;YACV,IAAI,EAAE,CAAC,SAAS,CAAC;YACjB,gBAAgB,EAAE,IAAI;SACzB;QACD,WAAW,EAAE;YACT;gBACI,IAAI,EAAE,cAAc,CAAC,KAAK;gBAC1B,EAAE,EAAE,UAAU,KAAK,EAAE;gBACrB,IAAI,EAAE,YAAY;gBAClB,KAAK,EAAE;oBACH,OAAO,EAAE,UAAU,KAAK,EAAE;oBAC1B,OAAO,EAAE,UAAU,KAAK,EAAE;oBAC1B,OAAO,EAAE,UAAU,KAAK,EAAE;iBAC7B;aACJ;SACJ;KACJ,CAAC;IAEF,OAAO,QAAQ,CAAC;AACpB,CAAC;AAED,MAAM,UAAU,0BAA0B,CAAC,UAAoB;IAC3D,OAAO,iBAAiB,CAAC,UAAU,CAAC,CAAC;AACzC,CAAC;AAED,MAAM,UAAU,2BAA2B,CAAC,SAA6B,SAAS;IAC9E,MAAM,QAAQ,GAAG;QACb,GAAG,iBAAiB,EAAE;QACtB,WAAW,EAAE;YACT;gBACI,IAAI,EAAE,cAAc,CAAC,KAAK;gBAC1B,EAAE,EAAE,UAAU,KAAK,EAAE;gBACrB,IAAI,EAAE,YAAY;gBAClB,MAAM;gBACN,WAAW,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE;aAC/B;SACJ;KACJ,CAAC;IACF,OAAO,QAAQ,CAAC;AACpB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es5.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2015.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2016.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2017.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2018.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2019.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2020.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2021.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2022.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.esnext.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.dom.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.scripthost.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../common/temp/node_modules/.pnpm/typescript@4.8.4/node_modules/typescript/lib/lib.esnext.full.d.ts","../../../common/temp/node_modules/.pnpm/tslib@2.4.0/node_modules/tslib/tslib.d.ts","../src/AddOnManifestTypes.ts","../../../common/temp/node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/dist/es5/uri.all.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/compile/codegen/code.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/compile/codegen/scope.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/compile/codegen/index.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/compile/rules.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/compile/util.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/compile/validate/subschema.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/compile/errors.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/compile/validate/index.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/compile/validate/dataType.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/applicator/not.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/applicator/if.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/applicator/index.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/validation/required.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/validation/const.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/validation/enum.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/validation/index.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/format/format.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/vocabularies/errors.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/types/json-schema.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/types/jtd-schema.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/runtime/validation_error.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/compile/ref_error.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/core.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/compile/resolve.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/compile/index.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/types/index.d.ts","../../../common/temp/node_modules/.pnpm/ajv@8.11.0/node_modules/ajv/dist/ajv.d.ts","../src/generated/validateManifestSchema.mjs","../src/ValidationUtils.ts","../src/AddOnManifestValidator.ts","../src/manifest-field/AddOnManifestEntrypoint.ts","../src/manifest-field/AddOnManifestApp.ts","../src/manifest-field/AddOnManifestRequirement.ts","../src/AddOnManifest.ts","../src/index.ts","../src/test/utils/TestManifests.ts","../../../common/temp/node_modules/.pnpm/@types+chai@4.2.14/node_modules/@types/chai/index.d.ts","../../../common/temp/node_modules/.pnpm/@types+mocha@9.1.1/node_modules/@types/mocha/index.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/assert.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/assert/strict.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/globals.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/async_hooks.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/buffer.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/child_process.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/cluster.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/console.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/constants.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/crypto.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/dgram.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/dns.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/dns/promises.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/domain.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/events.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/fs.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/fs/promises.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/http.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/http2.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/https.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/inspector.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/module.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/net.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/os.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/path.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/process.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/punycode.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/querystring.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/readline.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/repl.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/stream.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/stream/promises.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/stream/web.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/string_decoder.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/test.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/timers.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/timers/promises.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/tls.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/trace_events.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/tty.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/url.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/util.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/v8.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/vm.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/wasi.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/worker_threads.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/zlib.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/globals.global.d.ts","../../../common/temp/node_modules/.pnpm/@types+node@16.11.62/node_modules/@types/node/ts4.8/index.d.ts","../../../common/temp/node_modules/.pnpm/@types+sinonjs__fake-timers@8.1.3/node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../common/temp/node_modules/.pnpm/@types+sinon@9.0.8/node_modules/@types/sinon/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"3260e3386d9535b804205bdddb5618a9a27735bd22927f48ad54363abcd23d45","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"d96fa8a56871904776165ceb8e00bd56127e1a017bb2664cae76223b5f815141","14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e",{"version":"68c50e3e13f88b5d6061ef4f8697dad1ccd7521f5b60a6d6349a6680b7254b0b","signature":"5b12fd532e2e78a90b602a0f0fa94ccbc4937e158cdbf560f6444d24ab2e5494"},"9f3c5498245c38c9016a369795ec5ef1768d09db63643c8dba9656e5ab294825","44a8d350600656882fd7462774e32e8d13788313ba2e36d2e8d5437ac91b98df","60bb0e47502bf8716d1230288b4e6387c1d34cded12752ab5338108e2e662e67","b8870b5155d11a273c75718a4f19026da49f91c548703858cd3400d06c3bd3b8","b3ae4ded82f27cabba780b9af9647f6e08c9a4cabe8fbb7a0cca69c7add9ef4b","8d26ae32e5c9c080e44aee4a67e5ef02b5fda0604e6fecbb7b753c537e5282d9","05c4e792dae38912ba333725cdf8c42d242337d006c0d887f4ce5a7787871a95","cd44995ee13d5d23df17a10213fed7b483fabfd5ea08f267ab52c07ce0b6b4da","58ce1486f851942bd2d3056b399079bc9cb978ec933fe9833ea417e33eab676e","1a23b521db8d7ec9e2b96c6fbd4c7e96d12f408b1e03661b3b9f7da7291103e6","d3d0d11d30c9878ada3356b9c36a2754b8c7b6204a41c86bfb1488c08ce263b0","a6493f1f479637ed89a3ebec03f6dc117e3b1851d7e938ac4c8501396b8639a8","ae0951e44973e928fe2e999b11960493835d094b16adac0b085a79cff181bcb9","9d00e3a59eff68fa8c40e89953083eeaad1c5b2580ed7da2304424b249ecb237","1609ad4d488c356ee91eba7d7aa87cc6fb59bc8ac05c1a8f08665285ba3b71ad","8add088f72326098d68d622ddb024c00ae56a912383efe96b03f0481db88f7c9","dd17fe6332567b8f13e33dd3ff8926553cdcea2ad32d4350ce0063a2addaa764","4091d56a4622480549350b8811ec64c7826cd41a70ce5d9c1cc20384bb144049","353c0125b9e50c2a71e18394d46be5ccb37161cc0f0e7c69216aa6932c8cdafb","9c5d5f167e86b6ddf7142559a17d13fd39c34e868ae947c40381db866eed6609","4430dea494b0ee77bf823d9a7c4850a539e1060d5d865316bb23fb393e4f01d7","aae698ceead4edad0695b9ea87e43f274e698bdb302c8cb5fd2cab4dc496ccf0","51631e9a0c041e12479ab01f5801d8a237327d19e9ee37d5f1f66be912631425","c9d5d8adb1455f49182751ce885745dcc5f9697e9c260388bc3ae9d1860d5d10","f64289e3fa8d5719eaf5ba1bb02dd32dbbf7c603dda75c16770a6bc6e9c6b6d9","b1aa0e2e3511a8d10990f35866405c64c9e576258ef99eeb9ebafed980fd7506","2d255a5287f2fb5295688cb25bd18e1cd59866179f795f3f1fd6b71b7f0edf8f","43c1dbb78d5277a5fdd8fddce8b257f84ffa2b4253f58b95c04a310710d19e97","6c669d7e080344c1574aa276a89e57c3b9f0e97fab96a09427e7dfb19ca261bf","b71ac126853867d8e64c910f47d46d05c5ea797987d2604f63d401507dc43b6d","9a37238558d28b7ee06d08599e92eab30b90704541cc85e6448009d6d55fffa9","120b14d66a061910309ff97e7b06b5c6c09444218178b80b687a92af4d22d5dc","3de958065e3a44cbe0bfa667813bc59c63e63c9ce522af8dc1b64714910fa9ba","66e655f7c43558bae6703242cbd6c0551a94d0a97204bd4c4bbf7e77f24d1f85","72f7b32e023814078046c036ed4b7ad92414be0aebb63e805c682e14103ae38a","a89d8e67966d085ff971c9900cfa1abdd9732bab66d9c1914ecc15befdf8623d","7dfd0308261bb91b058eb91802690fe3f09192b263e070a19df4d629df29e265","608eb9d411ac76e93a10e05f8aae92b3a5cefc87594219b737df7c8737ba2bd7","cde493e09daad4bb29922fe633f760be9f0e8e2f39cdca999cce3b8690b5e13a","3d7f9eb12aface876f7b535cc89dcd416daf77f0b3573333f16ec0a70bcf902a","93ba4ac36f570c70a12d588e21c10dda9f351fad3e77d416952acddb27bff01d","8750f9dc1e277ffff7446c95571bae61aca0984e8f99e40fc1e8cb7161ae0642","66408d81ba8962282b1a55da34c6bd767105141f54d0ba14dca330efe0c8f552","7481b9d93ca44eb1f689e0b939545ff00dead7bdb9daba401dfb74292d83f831","821e64ddbdfa10fac5f0aed1c1d4e1f275840400caa96357ddfd15d02e5afba1",{"version":"f8404eb51aefa3e1e34de04dfc12ffe75e2111cd4a354344d54d90ab12139010","signature":"4296fa3d18cca11006fff2a4559881975e616e8e353c505999bf4935c2b3946b"},{"version":"6eebacaafb91c8550ed03f241ad208198084bcbe6401563e8353f084a8e01481","signature":"28ca615cf0e7597d5ce0c729b1b7f93ed5d7625750e464ec604c3d57b3f469cf"},{"version":"8e63e771bae036897f723c09e6eb73ea46b784a353361fc803dfc9c9cf2ea2fd","signature":"62dd424e3ba5cd1cd2ded6025d8651df85cd06fb83071df299d70505e3dceb8d"},{"version":"bfd41476319c7c378a61803a9f11ca890c4304878ed9be2bad9b815573189429","signature":"843446f7140e50a8eda091884228179399c96bb132334731890ac415d197b869"},{"version":"4533ced6fe1d3bda5ffc906de5fa0019d1d578528b65bb9269a72fc5c75f6373","signature":"8361a0cb6025f2fdc68e172705f95f2e4c297ddffb6acbd6b88c7e2fea07c070"},{"version":"91abda3f41936999b6415e5d5f9397ccf1da7ea1e926a3af0cf5bd36c1d64909","signature":"0996ed7b252765922f1cd9466d47cb3f03ae3f3b0cdc0dfa37d54614677dd54d"},{"version":"4de75a4fa90efdfbb43bde89c8980bdc4b001fbb90617575512b559735221d36","signature":"d7d6b57fcef249c3ae7d87be4e578e08a66202c40d782c128d38ac212ec53df0"},{"version":"b27c26e7a3e240d17cc0b449cb3dd302b1198a3b4d62d25fb368518d2c0001ce","signature":"120182128f22616e7bed52c0b37726118320a6c2c2f0e6c659fa8eb7f58c6334"},{"version":"fbbe2b9e4680f2d6626817c29c1f8826103fe7444506a60b31aca9669fc592c1","signature":"1a4dc812fb2dcbcd9405a2fd2081aaa5d5bde90ffcf93f062d46295e3a247051"},{"version":"2d65af67144ac8a3e835ba0bff8cd0c86ca7af3ade64ca13eab6ef42c3bd54de","affectsGlobalScope":true},{"version":"3f6d6465811321abc30a1e5f667feed63e5b3917b3d6c8d6645daf96c75f97ba","affectsGlobalScope":true},"0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"2f6c9750131d5d2fdaba85c164a930dc07d2d7e7e8970b89d32864aa6c72620c","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"aeeee3998c5a730f8689f04038d41cf4245c9edbf6ef29a698e45b36e399b8ed","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","3a0c45fe95e8f0e2c5247d48acf3a522d2ef29f1ab0effb3c59a9c4fdd5edbcd","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","c993aac3b6d4a4620ef9651497069eb84806a131420e4f158ea9396fb8eb9b8c","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25",{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true},"413a4be7f94f631235bbc83dad36c4d15e5a2ff02bca1efdbd03636d6454631b","20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","a5f6d22760eef0178bebc5b5b5664a403109615a9c49da879ccd84438bd55223","8d4c16a26d59e3ce49741a7d4a6e8206b884e226cf308667c7778a0b2c0fee7f","ee3bad055a79f188626b1a7046f04ab151fdd3581e55c51d32face175bd9d06f","d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"11c8be5993cd30dbb5310d95ba6c54dbb8724221eed0c4b2e4a7d6a4f9a032dd","d10f4929cd610c26926d6784fc3f9f4120b789c03081b5d65fb2d2670a00fa04","fb0989383c6109f20281b3d31265293daefdd76d0d30551782c1654e93704f48","a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","02b3239cf1b1ff8737e383ed5557f0247499d15f5bd21ab849b1a24687b6100c","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93",{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e3685a8957b4e2af64c3f04a58289ee0858a649dbcd963a2b897fe85858ae18a","cc75216f6b332971954ef74bf3d14c3881c461e82987050d5f62af3e5966e845","c9e127737d6a632738e2dcaffac6e67ef526bca02e5e971e8de5b1d6b3ec6650"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"module":99,"noImplicitAny":true,"noImplicitOverride":false,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":99,"useUnknownInCatchVariables":false},"fileIdsList":[[161],[117,161],[120,161],[121,126,161],[122,132,133,140,149,160,161],[122,123,132,140,161],[124,161],[125,126,133,141,161],[126,149,157,161],[127,129,132,140,161],[128,161],[129,130,161],[131,132,161],[132,161],[132,133,134,149,160,161],[132,133,134,149,161],[135,140,149,160,161],[132,133,135,136,140,149,157,160,161],[135,137,149,157,160,161],[117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167],[132,138,161],[139,160,161],[129,132,140,149,161],[141,161],[142,161],[120,143,161],[144,159,161,165],[145,161],[146,161],[132,147,161],[147,148,161,163],[132,149,150,151,161],[149,151,161],[149,150,161],[152,161],[153,161],[132,155,156,161],[155,156,161],[126,140,157,161],[158,161],[140,159,161],[121,135,146,160,161],[126,161],[149,161,162],[161,163],[161,164],[121,126,132,134,143,149,160,161,163,165],[149,161,166],[161,169],[64,65,69,96,97,101,103,104,161],[62,63,161],[62,161],[64,104,161],[64,65,101,102,104,161],[104,161],[61,104,105,161],[64,65,103,104,161],[64,65,67,68,103,104,161],[64,65,66,103,104,161],[64,65,69,96,97,98,99,100,103,104,161],[61,64,65,69,101,103,161],[69,104,161],[71,72,73,74,75,76,77,78,79,80,104,161],[94,104,161],[70,81,89,90,91,92,93,95,161],[74,104,161],[82,83,84,85,86,87,88,104,161],[59,60,108,109,111,161],[59,161],[59,60,105,106,107,112,161],[59,60,105,106,112,161],[59,60,108,109,111,112,161],[59,60,161],[59,60,112,161],[59,60,110,112,161],[60,109,111],[60],[60,105],[60,108,109,111,112],[60,112],[60,110,112]],"referencedMap":[[115,1],[116,1],[117,2],[118,2],[120,3],[121,4],[122,5],[123,6],[124,7],[125,8],[126,9],[127,10],[128,11],[129,12],[130,12],[131,13],[132,14],[133,15],[134,16],[119,1],[167,1],[135,17],[136,18],[137,19],[168,20],[138,21],[139,22],[140,23],[141,24],[142,25],[143,26],[144,27],[145,28],[146,29],[147,30],[148,31],[149,32],[151,33],[150,34],[152,35],[153,36],[154,1],[155,37],[156,38],[157,39],[158,40],[159,41],[160,42],[161,43],[162,44],[163,45],[164,46],[165,47],[166,48],[170,49],[169,1],[105,50],[62,1],[64,51],[63,52],[68,53],[103,54],[100,55],[102,56],[65,55],[66,57],[70,57],[69,58],[67,59],[101,60],[99,55],[104,61],[97,1],[98,1],[71,62],[76,55],[78,55],[73,55],[74,62],[80,55],[81,63],[72,55],[77,55],[79,55],[75,55],[95,64],[94,55],[96,65],[90,55],[92,55],[91,55],[87,55],[93,66],[88,55],[89,67],[82,55],[83,55],[84,55],[85,55],[86,55],[59,1],[11,1],[12,1],[16,1],[15,1],[2,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[3,1],[4,1],[28,1],[25,1],[26,1],[27,1],[29,1],[30,1],[31,1],[5,1],[32,1],[33,1],[34,1],[35,1],[6,1],[36,1],[37,1],[38,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[55,1],[56,1],[1,1],[10,1],[58,1],[57,1],[14,1],[13,1],[61,1],[112,68],[60,69],[108,70],[107,71],[106,69],[113,72],[110,73],[109,74],[111,75],[114,74]],"exportedModulesMap":[[115,1],[116,1],[117,2],[118,2],[120,3],[121,4],[122,5],[123,6],[124,7],[125,8],[126,9],[127,10],[128,11],[129,12],[130,12],[131,13],[132,14],[133,15],[134,16],[119,1],[167,1],[135,17],[136,18],[137,19],[168,20],[138,21],[139,22],[140,23],[141,24],[142,25],[143,26],[144,27],[145,28],[146,29],[147,30],[148,31],[149,32],[151,33],[150,34],[152,35],[153,36],[154,1],[155,37],[156,38],[157,39],[158,40],[159,41],[160,42],[161,43],[162,44],[163,45],[164,46],[165,47],[166,48],[170,49],[169,1],[105,50],[62,1],[64,51],[63,52],[68,53],[103,54],[100,55],[102,56],[65,55],[66,57],[70,57],[69,58],[67,59],[101,60],[99,55],[104,61],[97,1],[98,1],[71,62],[76,55],[78,55],[73,55],[74,62],[80,55],[81,63],[72,55],[77,55],[79,55],[75,55],[95,64],[94,55],[96,65],[90,55],[92,55],[91,55],[87,55],[93,66],[88,55],[89,67],[82,55],[83,55],[84,55],[85,55],[86,55],[59,1],[11,1],[12,1],[16,1],[15,1],[2,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[3,1],[4,1],[28,1],[25,1],[26,1],[27,1],[29,1],[30,1],[31,1],[5,1],[32,1],[33,1],[34,1],[35,1],[6,1],[36,1],[37,1],[38,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[55,1],[56,1],[1,1],[10,1],[58,1],[57,1],[14,1],[13,1],[61,1],[112,76],[108,77],[107,78],[113,79],[110,77],[109,80],[111,81],[114,80]],"semanticDiagnosticsPerFile":[115,116,117,118,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,119,167,135,136,137,168,138,139,140,141,142,143,144,145,146,147,148,149,151,150,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,170,169,105,62,64,63,68,103,100,102,65,66,70,69,67,101,99,104,97,98,71,76,78,73,74,80,81,72,77,79,75,95,94,96,90,92,91,87,93,88,89,82,83,84,85,86,59,11,12,16,15,2,17,18,19,20,21,22,23,24,3,4,28,25,26,27,29,30,31,5,32,33,34,35,6,36,37,38,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,55,56,1,10,58,57,14,13,61,112,60,108,107,106,113,110,109,111,114]},"version":"4.8.4"}
|
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@adobe/ccweb-add-on-manifest",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"author": "Adobe",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/*"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": "./dist/index.js",
|
|
14
|
+
"./test-manifests": "./dist/test/utils/TestManifests.js"
|
|
15
|
+
},
|
|
16
|
+
"typesVersions": {
|
|
17
|
+
"*": {
|
|
18
|
+
"test-manifests": [
|
|
19
|
+
"dist/test/utils/TestManifests.d.ts"
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"url": "https://github.com/adobe/create-ccweb-add-on"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"_prebuild": "node scripts/generateManifestValidator.js",
|
|
28
|
+
"ibuild": "rushx _prebuild && tsc",
|
|
29
|
+
"build": "rushx clean && rushx ibuild",
|
|
30
|
+
"build:release": "rushx _prebuild && tsc",
|
|
31
|
+
"build:watch": "rushx _prebuild && tsc --watch",
|
|
32
|
+
"clean": "rimraf coverage dist src/generated",
|
|
33
|
+
"test": "c8 mocha && c8 check-coverage --lines 100 --functions 100 --branches 100"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"tslib": "2.4.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@types/chai": "4.2.14",
|
|
40
|
+
"@types/mocha": "9.1.1",
|
|
41
|
+
"@types/node": "16.11.62",
|
|
42
|
+
"@types/sinon": "9.0.8",
|
|
43
|
+
"ajv": "8.11.0",
|
|
44
|
+
"c8": "7.7.2",
|
|
45
|
+
"chai": "4.3.4",
|
|
46
|
+
"mocha": "10.0.0",
|
|
47
|
+
"prettier": "2.8.0",
|
|
48
|
+
"rimraf": "3.0.2",
|
|
49
|
+
"sinon": "9.2.1",
|
|
50
|
+
"ts-node": "10.9.1",
|
|
51
|
+
"typescript": "4.8.4"
|
|
52
|
+
}
|
|
53
|
+
}
|