@mutagent/cli 0.1.62 → 0.1.63
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/bin/cli.js +4 -2
- package/dist/bin/cli.js.map +3 -3
- package/dist/index.js +4 -2
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -964,7 +964,9 @@ class SDKClientWrapper {
|
|
|
964
964
|
try {
|
|
965
965
|
const response = await this.sdk.providerConfigs.listProviders({
|
|
966
966
|
provider: filters?.type,
|
|
967
|
-
includeInactive: true
|
|
967
|
+
includeInactive: true,
|
|
968
|
+
workspaceId: this.workspaceId,
|
|
969
|
+
organizationId: this.organizationId
|
|
968
970
|
});
|
|
969
971
|
const raw = response;
|
|
970
972
|
const configs = raw.result?.configs ?? raw.configs ?? [];
|
|
@@ -9027,5 +9029,5 @@ program.addCommand(createHooksCommand());
|
|
|
9027
9029
|
program.addCommand(createFeedbackCommand());
|
|
9028
9030
|
program.parse();
|
|
9029
9031
|
|
|
9030
|
-
//# debugId=
|
|
9032
|
+
//# debugId=E63D3B793E7AE87C64756E2164756E21
|
|
9031
9033
|
//# sourceMappingURL=cli.js.map
|