@camstack/sdk 0.1.25 → 0.1.26

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.
@@ -113,6 +113,7 @@ export declare class BackendClient {
113
113
  declaration?: import("@camstack/types").AddonDeclaration;
114
114
  hasConfigSchema: boolean;
115
115
  source: "core" | "installed" | "workspace";
116
+ installSource?: "npm" | "workspace";
116
117
  }[]>;
117
118
  getAddonConfigSchema(addonId: string): Promise<import("@camstack/types").ConfigUISchema | null>;
118
119
  getAddonConfig(addonId: string): Promise<Record<string, unknown>>;
@@ -182,9 +183,17 @@ export declare class BackendClient {
182
183
  }>;
183
184
  bridgeListPackages(): Promise<import("@camstack/types").InstalledPackage[]>;
184
185
  bridgeListAddonsPackages(): Promise<{
185
- id: string;
186
- packageName: string;
187
- slot: import("@camstack/types").PipelineSlot | null;
186
+ manifest: import("@camstack/types").AddonManifest & {
187
+ packageName: string;
188
+ packageVersion: string;
189
+ packageDisplayName?: string;
190
+ protected?: boolean;
191
+ removable?: boolean;
192
+ };
193
+ declaration?: import("@camstack/types").AddonDeclaration;
194
+ hasConfigSchema: boolean;
195
+ source: "core" | "installed" | "workspace";
196
+ installSource?: "npm" | "workspace";
188
197
  }[]>;
189
198
  bridgeInstallPackage(packageName: string, version?: string): Promise<{
190
199
  success: boolean;