@capgo/cli 7.71.9 → 7.71.10
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 +73 -73
- package/dist/package.json +1 -1
- package/dist/src/sdk.js +45 -45
- package/dist/src/utils.d.ts +3 -1
- package/package.json +1 -1
package/dist/src/utils.d.ts
CHANGED
|
@@ -3644,7 +3644,9 @@ export declare function updateOrCreateChannel(supabase: SupabaseClient<Database>
|
|
|
3644
3644
|
updated_at: string;
|
|
3645
3645
|
version: number;
|
|
3646
3646
|
}>>;
|
|
3647
|
-
export declare function sendEvent(capgkey: string, payload: TrackOptions
|
|
3647
|
+
export declare function sendEvent(capgkey: string, payload: TrackOptions & {
|
|
3648
|
+
notifyConsole?: boolean;
|
|
3649
|
+
}, verbose?: boolean): Promise<void>;
|
|
3648
3650
|
export declare function show2FADeniedError(organizationName?: string): never;
|
|
3649
3651
|
export declare function getOrganization(supabase: SupabaseClient<Database>, roles: string[]): Promise<Organization>;
|
|
3650
3652
|
export declare function verifyUser(supabase: SupabaseClient<Database>, apikey: string, keymod?: Database['public']['Enums']['key_mode'][]): Promise<string>;
|