@gopherhole/cli 0.1.15 → 0.1.16
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 +4 -0
- package/package.json +1 -1
- package/src/index.ts +3 -0
package/dist/index.js
CHANGED
|
@@ -1088,11 +1088,13 @@ ${chalk_1.default.bold('Examples:')}
|
|
|
1088
1088
|
$ gopherhole discover search --category productivity
|
|
1089
1089
|
$ gopherhole discover search --tag ai --sort popular
|
|
1090
1090
|
$ gopherhole discover search --skill-tag memory --scope tenant
|
|
1091
|
+
$ gopherhole discover search --owner "GopherHole Official"
|
|
1091
1092
|
`)
|
|
1092
1093
|
.option('-c, --category <category>', 'Filter by category')
|
|
1093
1094
|
.option('-t, --tag <tag>', 'Filter by tag')
|
|
1094
1095
|
.option('--skill-tag <skillTag>', 'Filter by skill tag')
|
|
1095
1096
|
.option('--content-mode <contentMode>', 'Filter by content mode (MIME type)')
|
|
1097
|
+
.option('--owner <owner>', 'Filter by organization/tenant name')
|
|
1096
1098
|
.option('-s, --sort <sort>', 'Sort by: rating, popular, recent', 'rating')
|
|
1097
1099
|
.option('-l, --limit <limit>', 'Number of results (max 50)', '10')
|
|
1098
1100
|
.option('-o, --offset <offset>', 'Pagination offset')
|
|
@@ -1111,6 +1113,8 @@ ${chalk_1.default.bold('Examples:')}
|
|
|
1111
1113
|
params.set('skillTag', options.skillTag);
|
|
1112
1114
|
if (options.contentMode)
|
|
1113
1115
|
params.set('contentMode', options.contentMode);
|
|
1116
|
+
if (options.owner)
|
|
1117
|
+
params.set('owner', options.owner);
|
|
1114
1118
|
if (options.sort)
|
|
1115
1119
|
params.set('sort', options.sort);
|
|
1116
1120
|
if (options.limit)
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1209,11 +1209,13 @@ ${chalk.bold('Examples:')}
|
|
|
1209
1209
|
$ gopherhole discover search --category productivity
|
|
1210
1210
|
$ gopherhole discover search --tag ai --sort popular
|
|
1211
1211
|
$ gopherhole discover search --skill-tag memory --scope tenant
|
|
1212
|
+
$ gopherhole discover search --owner "GopherHole Official"
|
|
1212
1213
|
`)
|
|
1213
1214
|
.option('-c, --category <category>', 'Filter by category')
|
|
1214
1215
|
.option('-t, --tag <tag>', 'Filter by tag')
|
|
1215
1216
|
.option('--skill-tag <skillTag>', 'Filter by skill tag')
|
|
1216
1217
|
.option('--content-mode <contentMode>', 'Filter by content mode (MIME type)')
|
|
1218
|
+
.option('--owner <owner>', 'Filter by organization/tenant name')
|
|
1217
1219
|
.option('-s, --sort <sort>', 'Sort by: rating, popular, recent', 'rating')
|
|
1218
1220
|
.option('-l, --limit <limit>', 'Number of results (max 50)', '10')
|
|
1219
1221
|
.option('-o, --offset <offset>', 'Pagination offset')
|
|
@@ -1228,6 +1230,7 @@ ${chalk.bold('Examples:')}
|
|
|
1228
1230
|
if (options.tag) params.set('tag', options.tag);
|
|
1229
1231
|
if (options.skillTag) params.set('skillTag', options.skillTag);
|
|
1230
1232
|
if (options.contentMode) params.set('contentMode', options.contentMode);
|
|
1233
|
+
if (options.owner) params.set('owner', options.owner);
|
|
1231
1234
|
if (options.sort) params.set('sort', options.sort);
|
|
1232
1235
|
if (options.limit) params.set('limit', options.limit);
|
|
1233
1236
|
if (options.offset) params.set('offset', options.offset);
|