@capgo/cli 4.0.10 → 4.0.11

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,13 @@
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.0.11](https://github.com/Cap-go/CLI/compare/v4.0.10...v4.0.11) (2024-02-25)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * deploy new is_good_plan_v5 ([38bc592](https://github.com/Cap-go/CLI/commit/38bc592312f5d6e351c7da3be3ea423e2747553e))
11
+
5
12
  ### [4.0.10](https://github.com/Cap-go/CLI/compare/v4.0.9...v4.0.10) (2024-02-24)
6
13
 
7
14
 
package/dist/index.js CHANGED
@@ -61661,7 +61661,7 @@ var import_get_latest_version = __toESM(require_src3());
61661
61661
  // package.json
61662
61662
  var package_default = {
61663
61663
  name: "@capgo/cli",
61664
- version: "4.0.10",
61664
+ version: "4.0.11",
61665
61665
  description: "A CLI to upload to capgo servers",
61666
61666
  main: "dist/index.js",
61667
61667
  bin: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
- "version": "4.0.10",
3
+ "version": "4.0.11",
4
4
  "description": "A CLI to upload to capgo servers",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/utils.ts CHANGED
@@ -119,7 +119,7 @@ export const checkKey = async (supabase: SupabaseClient<Database>, apikey: strin
119
119
 
120
120
  export const isGoodPlan = async (supabase: SupabaseClient<Database>, userId: string): Promise<boolean> => {
121
121
  const { data } = await supabase
122
- .rpc('is_good_plan_v3', { userid: userId })
122
+ .rpc('is_good_plan_v5', { userid: userId })
123
123
  .single()
124
124
  return data || false
125
125
  }