@salesforce/packaging 1.2.7 → 1.3.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.
|
@@ -94,7 +94,7 @@ export type PackageVersionListResult = {
|
|
|
94
94
|
HasMetadataRemoved?: boolean;
|
|
95
95
|
Language?: string;
|
|
96
96
|
};
|
|
97
|
-
export type PackageInstallCreateRequest = Partial<Pick<PackageInstallRequest, 'ApexCompileType' | 'EnableRss' | 'NameConflictResolution' | 'PackageInstallSource' | 'Password' | 'SecurityType' | 'UpgradeType'>> & Pick<PackagingSObjects.PackageInstallRequest, 'SubscriberPackageVersionKey'>;
|
|
97
|
+
export type PackageInstallCreateRequest = Partial<Pick<PackageInstallRequest, 'ApexCompileType' | 'EnableRss' | 'NameConflictResolution' | 'PackageInstallSource' | 'Password' | 'SecurityType' | 'SkipHandlers' | 'UpgradeType'>> & Pick<PackagingSObjects.PackageInstallRequest, 'SubscriberPackageVersionKey'>;
|
|
98
98
|
export type Package1Display = {
|
|
99
99
|
MetadataPackageVersionId: string;
|
|
100
100
|
MetadataPackageId: string;
|
|
@@ -225,6 +225,7 @@ export declare namespace PackagingSObjects {
|
|
|
225
225
|
EnableRss: boolean;
|
|
226
226
|
UpgradeType: Nullable<'delete-only' | 'deprecate-only' | 'mixed-mode'>;
|
|
227
227
|
ApexCompileType: Nullable<'all' | 'package'>;
|
|
228
|
+
SkipHandlers: boolean;
|
|
228
229
|
Status: 'ERROR' | 'IN_PROGRESS' | 'SUCCESS' | 'UNKNOWN';
|
|
229
230
|
Errors: Nullable<SubscriberPackageInstallErrors>;
|
|
230
231
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/packaging",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Packaging library for the Salesforce packaging platform",
|
|
5
5
|
"main": "lib/exported",
|
|
6
6
|
"types": "lib/exported.d.ts",
|
|
@@ -62,13 +62,13 @@
|
|
|
62
62
|
"@salesforce/dev-config": "^3.1.0",
|
|
63
63
|
"@salesforce/dev-scripts": "^3.1.1",
|
|
64
64
|
"@salesforce/prettier-config": "^0.0.2",
|
|
65
|
-
"@salesforce/ts-sinon": "^1.4.
|
|
65
|
+
"@salesforce/ts-sinon": "^1.4.5",
|
|
66
66
|
"@types/debug": "4.1.7",
|
|
67
67
|
"@types/globby": "^9.1.0",
|
|
68
68
|
"@types/jszip": "^3.4.1",
|
|
69
69
|
"@types/xml2js": "^0.4.11",
|
|
70
70
|
"@typescript-eslint/eslint-plugin": "^5.40.1",
|
|
71
|
-
"@typescript-eslint/parser": "5.
|
|
71
|
+
"@typescript-eslint/parser": "5.51.0",
|
|
72
72
|
"chai": "^4.3.7",
|
|
73
73
|
"commitizen": "^4.2.6",
|
|
74
74
|
"eslint": "^8.31.0",
|
|
@@ -82,12 +82,12 @@
|
|
|
82
82
|
"husky": "^8.0.2",
|
|
83
83
|
"mocha": "^10.2.0",
|
|
84
84
|
"nyc": "^15.1.0",
|
|
85
|
-
"prettier": "^2.8.
|
|
85
|
+
"prettier": "^2.8.4",
|
|
86
86
|
"pretty-quick": "^3.1.3",
|
|
87
87
|
"shelljs": "0.8.5",
|
|
88
88
|
"sinon": "14.0.2",
|
|
89
89
|
"ts-node": "^10.9.1",
|
|
90
|
-
"typescript": "4.9.
|
|
90
|
+
"typescript": "4.9.5"
|
|
91
91
|
},
|
|
92
92
|
"publishConfig": {
|
|
93
93
|
"access": "public"
|