conduyt 1.29.0 → 1.30.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/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2299,7 +2299,7 @@ reports
|
|
|
2299
2299
|
.action(run(async (client) => client.get("/api/v1/reports/custom")));
|
|
2300
2300
|
reports
|
|
2301
2301
|
.command("create")
|
|
2302
|
-
.description("Create a saved report from a JSON definition (name, entity, columns, filters, sortBy, groupBy, groupBy2, aggregate, measureField, population: { smartViewId }); pivot: { rows, columns, measures } for a pivot grid on contacts/deals")
|
|
2302
|
+
.description("Create a saved report from a JSON definition (name, entity, columns, filters, sortBy, groupBy, groupBy2, aggregate, measureField, population: { smartViewId }, isShared, isPrivate: only you and admins can open it even when shared); pivot: { rows, columns, measures } for a pivot grid on contacts/deals")
|
|
2303
2303
|
.requiredOption("--json <definition>", "the definition as JSON (or @file)")
|
|
2304
2304
|
.action(run(async (client, opts) => {
|
|
2305
2305
|
const raw = opts.json.startsWith("@") ? (await import("node:fs")).readFileSync(opts.json.slice(1), "utf8") : opts.json;
|
package/package.json
CHANGED