@major-tech/resource-client 0.2.2 → 0.2.3
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/bin/generate-clients.mjs +1 -0
- package/package.json +1 -1
package/bin/generate-clients.mjs
CHANGED
|
@@ -160,6 +160,7 @@ function addResource(resourceId, name, type, description, applicationId) {
|
|
|
160
160
|
if (!validTypes.includes(type)) {
|
|
161
161
|
console.error(`❌ Invalid type: ${type}`);
|
|
162
162
|
console.log(` Valid types: ${validTypes.join(', ')}`);
|
|
163
|
+
console.log(` Your resource-client version might be out of date. Try running 'pnpm update @major-tech/resource-client'`)
|
|
163
164
|
process.exit(1);
|
|
164
165
|
}
|
|
165
166
|
|
package/package.json
CHANGED