@capgo/cli 4.3.2 → 4.3.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/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [4.3.3](https://github.com/Cap-go/CLI/compare/v4.3.2...v4.3.3) (2024-04-16)
6
+
5
7
  ### [4.3.2](https://github.com/Cap-go/CLI/compare/v4.3.1...v4.3.2) (2024-04-14)
6
8
 
7
9
  ### [4.3.1](https://github.com/Cap-go/CLI/compare/v4.3.0...v4.3.1) (2024-04-14)
package/dist/index.js CHANGED
@@ -91634,7 +91634,7 @@ var {
91634
91634
  // package.json
91635
91635
  var package_default = {
91636
91636
  name: "@capgo/cli",
91637
- version: "4.3.2",
91637
+ version: "4.3.3",
91638
91638
  description: "A CLI to upload to capgo servers",
91639
91639
  main: "dist/index.js",
91640
91640
  bin: {
@@ -94502,7 +94502,7 @@ async function addApp(appId, options, throwErr = true) {
94502
94502
  } else if (appExist) {
94503
94503
  return true;
94504
94504
  }
94505
- const { error: orgError, data: allOrganizations } = await supabase.rpc("get_orgs_v4");
94505
+ const { error: orgError, data: allOrganizations } = await supabase.rpc("get_orgs_v5");
94506
94506
  if (orgError) {
94507
94507
  f2.error("Cannot get the list of organizations - exiting");
94508
94508
  f2.error(`Error ${JSON.stringify(orgError)}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
- "version": "4.3.2",
3
+ "version": "4.3.3",
4
4
  "description": "A CLI to upload to capgo servers",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/app/add.ts CHANGED
@@ -50,7 +50,7 @@ export async function addApp(appId: string, options: Options, throwErr = true) {
50
50
  }
51
51
 
52
52
  const { error: orgError, data: allOrganizations } = await supabase
53
- .rpc('get_orgs_v4')
53
+ .rpc('get_orgs_v5')
54
54
 
55
55
  if (orgError) {
56
56
  p.log.error('Cannot get the list of organizations - exiting')