@squidcloud/cli 1.0.439 → 1.0.441
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 +30262 -29446
- package/dist/resources/claude/skills/squid-development/SKILL.md +2 -2
- package/package.json +2 -2
|
@@ -231,13 +231,13 @@ const { organizationId } = await client.createOrganization({
|
|
|
231
231
|
console.log('Created org:', organizationId);
|
|
232
232
|
|
|
233
233
|
// Create an application in the organization
|
|
234
|
-
const { appId } = await client.createApplication({
|
|
234
|
+
const { appId, apiKey } = await client.createApplication({
|
|
235
235
|
organizationId,
|
|
236
236
|
name: 'My Application',
|
|
237
237
|
cloudId: 'aws', // 'aws' | 'gcp' | 'azure'
|
|
238
238
|
region: 'us-east-1' // Cloud region (e.g., 'us-east-1', 'us-central1')
|
|
239
239
|
});
|
|
240
|
-
console.log('Created app:', appId);
|
|
240
|
+
console.log('Created app:', appId, 'with apiKey', apiKey);
|
|
241
241
|
|
|
242
242
|
// Delete an application
|
|
243
243
|
await client.deleteApplication({ appId });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squidcloud/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.441",
|
|
4
4
|
"description": "The Squid CLI",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"node": ">=18.0.0"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@squidcloud/local-backend": "^1.0.
|
|
31
|
+
"@squidcloud/local-backend": "^1.0.441",
|
|
32
32
|
"adm-zip": "^0.5.16",
|
|
33
33
|
"copy-webpack-plugin": "^12.0.2",
|
|
34
34
|
"decompress": "^4.2.1",
|