@capgo/cli 8.31.2 → 8.31.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.
@@ -1023,7 +1023,6 @@ export type Database = {
1023
1023
  created_at: string;
1024
1024
  description: string | null;
1025
1025
  enabled: boolean;
1026
- healthcheck_url: string | null;
1027
1026
  hour_interval: number | null;
1028
1027
  id: number;
1029
1028
  minute_interval: number | null;
@@ -1044,7 +1043,6 @@ export type Database = {
1044
1043
  created_at?: string;
1045
1044
  description?: string | null;
1046
1045
  enabled?: boolean;
1047
- healthcheck_url?: string | null;
1048
1046
  hour_interval?: number | null;
1049
1047
  id?: number;
1050
1048
  minute_interval?: number | null;
@@ -1065,7 +1063,6 @@ export type Database = {
1065
1063
  created_at?: string;
1066
1064
  description?: string | null;
1067
1065
  enabled?: boolean;
1068
- healthcheck_url?: string | null;
1069
1066
  hour_interval?: number | null;
1070
1067
  id?: number;
1071
1068
  minute_interval?: number | null;
@@ -4828,14 +4825,6 @@ export type Database = {
4828
4825
  };
4829
4826
  Returns: undefined;
4830
4827
  };
4831
- process_queue_with_healthcheck: {
4832
- Args: {
4833
- batch_size: number;
4834
- healthcheck_url: string;
4835
- queue_names: string[];
4836
- };
4837
- Returns: undefined;
4838
- };
4839
4828
  process_stats_email_monthly: {
4840
4829
  Args: never;
4841
4830
  Returns: undefined;
@@ -1108,7 +1108,6 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
1108
1108
  created_at: string;
1109
1109
  description: string | null;
1110
1110
  enabled: boolean;
1111
- healthcheck_url: string | null;
1112
1111
  hour_interval: number | null;
1113
1112
  id: number;
1114
1113
  minute_interval: number | null;
@@ -1129,7 +1128,6 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
1129
1128
  created_at?: string;
1130
1129
  description?: string | null;
1131
1130
  enabled?: boolean;
1132
- healthcheck_url?: string | null;
1133
1131
  hour_interval?: number | null;
1134
1132
  id?: number;
1135
1133
  minute_interval?: number | null;
@@ -1150,7 +1148,6 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
1150
1148
  created_at?: string;
1151
1149
  description?: string | null;
1152
1150
  enabled?: boolean;
1153
- healthcheck_url?: string | null;
1154
1151
  hour_interval?: number | null;
1155
1152
  id?: number;
1156
1153
  minute_interval?: number | null;
@@ -1833,7 +1830,12 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
1833
1830
  plan_maker_conversion_rate?: number;
1834
1831
  plan_maker_monthly?: number;
1835
1832
  plan_maker_yearly?: number;
1836
- plan_solo?: number | null;
1833
+ plan_solo
1834
+ /**
1835
+ * Writes delta manifest rows through the backend (file_size stays 0 until R2 size lookup).
1836
+ * Prefer this over writing app_versions.manifest jsonb — old CLIs still use that legacy path.
1837
+ */
1838
+ ?: number | null;
1837
1839
  plan_solo_conversion_rate?: number;
1838
1840
  plan_solo_monthly?: number;
1839
1841
  plan_solo_yearly?: number;
@@ -4833,14 +4835,6 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
4833
4835
  };
4834
4836
  Returns: undefined;
4835
4837
  };
4836
- process_queue_with_healthcheck: {
4837
- Args: {
4838
- batch_size: number;
4839
- healthcheck_url: string;
4840
- queue_names: string[];
4841
- };
4842
- Returns: undefined;
4843
- };
4844
4838
  process_stats_email_monthly: {
4845
4839
  Args: never;
4846
4840
  Returns: undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
3
  "type": "module",
4
- "version": "8.31.2",
4
+ "version": "8.31.3",
5
5
  "description": "A CLI to upload to capgo servers",
6
6
  "author": "Martin martin@capgo.app",
7
7
  "license": "Apache 2.0",