@capgo/cli 8.8.0 → 8.8.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 +3 -3
- package/dist/package.json +1 -1
- package/dist/src/api/channels.d.ts +2 -2
- package/dist/src/sdk.js +205 -205
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -5729,11 +5729,11 @@ export declare function delChannelDevices(supabase: SupabaseClient<Database>, ap
|
|
|
5729
5729
|
isOneToOne: false;
|
|
5730
5730
|
referencedRelation: "orgs";
|
|
5731
5731
|
referencedColumns: ["id"];
|
|
5732
|
-
}], "DELETE">;
|
|
5732
|
+
}], "DELETE", false>;
|
|
5733
5733
|
export declare function findBundleIdByChannelName(supabase: SupabaseClient<Database>, appId: string, name: string): PromiseLike<{
|
|
5734
5734
|
id: number;
|
|
5735
5735
|
name: string;
|
|
5736
|
-
} | null
|
|
5736
|
+
} | null>;
|
|
5737
5737
|
export type { Channel } from '../schemas/channel';
|
|
5738
5738
|
type Channel = import('../schemas/channel').Channel;
|
|
5739
5739
|
export declare function displayChannels(data: Channel[], silent?: boolean): void;
|