@salesforce/packaging 3.2.5 → 3.2.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.
@@ -87,7 +87,7 @@ function constructWhere(options) {
87
87
  where.push(`Id = '${options.id}'`);
88
88
  }
89
89
  // filter on created date, days ago: 0 for today, etc
90
- if (options?.createdlastdays) {
90
+ if (options?.createdlastdays !== undefined) {
91
91
  if (options.createdlastdays < 0) {
92
92
  throw messages.createError('invalidDaysNumber', ['createdlastdays', options.createdlastdays]);
93
93
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/packaging",
3
- "version": "3.2.5",
3
+ "version": "3.2.6",
4
4
  "description": "Packaging library for the Salesforce packaging platform",
5
5
  "main": "lib/exported",
6
6
  "types": "lib/exported.d.ts",
@@ -61,7 +61,7 @@
61
61
  "@salesforce/ts-sinon": "^1.4.19",
62
62
  "@types/globby": "^9.1.0",
63
63
  "@types/jszip": "^3.4.1",
64
- "eslint-plugin-sf-plugin": "^1.17.1",
64
+ "eslint-plugin-sf-plugin": "^1.17.2",
65
65
  "shelljs": "0.8.5",
66
66
  "ts-node": "^10.9.2",
67
67
  "typescript": "^5.3.3"