@salesforce/packaging 3.6.0 → 3.7.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.
@@ -166,6 +166,7 @@ export type PackageVersionListOptions = {
166
166
  concise?: boolean;
167
167
  isReleased?: boolean;
168
168
  showConversionsOnly?: boolean;
169
+ branch?: string;
169
170
  };
170
171
  export type PackageVersionUpdateOptions = {
171
172
  InstallKey?: string;
@@ -114,6 +114,9 @@ function constructWhere(options) {
114
114
  if (options?.showConversionsOnly) {
115
115
  where.push('ConvertedFromVersionId != null');
116
116
  }
117
+ if (options?.branch) {
118
+ where.push(`Branch='${options.branch}'`);
119
+ }
117
120
  // exclude deleted
118
121
  where.push('IsDeprecated = false');
119
122
  return where;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/packaging",
3
- "version": "3.6.0",
3
+ "version": "3.7.0",
4
4
  "description": "Packaging library for the Salesforce packaging platform",
5
5
  "main": "lib/exported",
6
6
  "types": "lib/exported.d.ts",
@@ -42,7 +42,7 @@
42
42
  ],
43
43
  "dependencies": {
44
44
  "@jsforce/jsforce-node": "^3.2.0",
45
- "@salesforce/core": "^7.3.12",
45
+ "@salesforce/core": "^7.4.0",
46
46
  "@salesforce/kit": "^3.1.2",
47
47
  "@salesforce/schemas": "^1.9.0",
48
48
  "@salesforce/source-deploy-retrieve": "^11.6.5",