@swell/cli 2.0.7 → 2.0.8
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/push-app-command.js +2 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/dist/push-app-command.js
CHANGED
|
@@ -110,7 +110,8 @@ export class PushAppCommand extends RemoteAppCommand {
|
|
|
110
110
|
if (this.app.type === 'theme') {
|
|
111
111
|
themeAppId = this.app.id;
|
|
112
112
|
const storefrontApps = await this.handleRequestErrors(async () => this.api.get({
|
|
113
|
-
|
|
113
|
+
// TODO: improve this filter query
|
|
114
|
+
adminPath: `/apps?type=storefront&$or[0][kind]=shop&$or[1][kind]=`,
|
|
114
115
|
}));
|
|
115
116
|
const compatibleStorefrontApps = storefrontApps.results.filter((app) => app.installed &&
|
|
116
117
|
app.storefront?.theme?.provider === 'app' &&
|
package/oclif.manifest.json
CHANGED