@plasmicapp/cli 0.1.351 → 0.1.353

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/api.d.ts CHANGED
@@ -51,11 +51,6 @@ export interface ProjectModuleBundle {
51
51
  id: string;
52
52
  module: string;
53
53
  }
54
- export interface JsBundleTheme {
55
- themeFileName: string;
56
- themeModule: string;
57
- bundleName: string;
58
- }
59
54
  export interface ProjectMetaBundle {
60
55
  projectId: string;
61
56
  projectName: string;
@@ -258,9 +253,6 @@ export declare class PlasmicApi {
258
253
  }): Promise<ProjectBundle>;
259
254
  projectMeta(projectId: string): Promise<ProjectMetaInfo>;
260
255
  genLocalizationStrings(projects: readonly string[], format: "po" | "json" | "lingui", keyScheme: "content" | "hash" | "path", tagPrefix: string | undefined, projectIdsAndTokens: ProjectIdAndToken[], excludeDeps: boolean | undefined): Promise<string>;
261
- uploadBundle(projectId: string, bundleName: string, bundleJs: string, css: string[], metaJson: string, genModulePath: string | undefined, genCssPaths: string[], pkgVersion: string | undefined, extraPropMetaJson: string | undefined, themeProviderWrapper: string | undefined, themeModule: string | undefined): Promise<StyleTokensMap>;
262
- projectStyleTokens(projectId: string, branchName: string, versionRange?: string): Promise<StyleTokensMap>;
263
- projectIcons(projectId: string, branchName: string, versionRange?: string, iconIds?: string[]): Promise<ProjectIconsResponse>;
264
256
  connectSocket(): ReturnType<typeof socketio>;
265
257
  private post;
266
258
  private get;
@@ -269,5 +261,5 @@ export declare class PlasmicApi {
269
261
  private projectIdsAndTokens?;
270
262
  attachProjectIdsAndTokens(idsAndTokens: ProjectIdAndToken[]): void;
271
263
  private get studioHost();
272
- private get codegenHost();
264
+ private get apiHost();
273
265
  }