@capgo/cli 8.37.0 → 8.37.1
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 +565 -565
- package/dist/package.json +1 -1
- package/dist/src/sdk.js +274 -274
- package/dist/src/shared/trim-trailing-slashes.d.ts +1 -0
- package/dist/src/utils.d.ts +9 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function trimTrailingSlashes(value: string): string;
|
package/dist/src/utils.d.ts
CHANGED
|
@@ -6,6 +6,8 @@ import type { UploadSpinner } from './bundle/reporter';
|
|
|
6
6
|
import type { CapacitorConfig, ExtConfigPairs } from './config';
|
|
7
7
|
import type { Compatibility, CompatibilityDetails, NativePackage } from './schemas/common';
|
|
8
8
|
import type { Database } from './types/supabase.types';
|
|
9
|
+
import { trimTrailingSlashes } from './shared/trim-trailing-slashes';
|
|
10
|
+
export { trimTrailingSlashes };
|
|
9
11
|
export declare const baseKey = ".capgo_key";
|
|
10
12
|
export declare const baseKeyV2 = ".capgo_key_v2";
|
|
11
13
|
export declare const baseKeyPub = ".capgo_key.pub";
|
|
@@ -3077,7 +3079,13 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
3077
3079
|
created_at?: string;
|
|
3078
3080
|
credit_step_id?: number | null;
|
|
3079
3081
|
credits_debited?: number;
|
|
3080
|
-
credits_estimated
|
|
3082
|
+
credits_estimated
|
|
3083
|
+
/**
|
|
3084
|
+
* Check if a package is compatible and return detailed reasons if not
|
|
3085
|
+
*/
|
|
3086
|
+
? /**
|
|
3087
|
+
* Check if a package is compatible and return detailed reasons if not
|
|
3088
|
+
*/: number;
|
|
3081
3089
|
details?: import("./types/supabase.types").Json | null;
|
|
3082
3090
|
id?: string;
|
|
3083
3091
|
metric?: Database["public"]["Enums"]["credit_metric_type"];
|