@plasmicapp/cli 0.1.352 → 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 +0 -8
- package/dist/index.js +1 -4319
- package/dist/lib.d.ts +5 -6
- package/dist/lib.js +464 -4742
- package/dist/plasmic.schema.json +0 -21
- package/dist/utils/config-utils.d.ts +0 -5
- package/package.json +2 -2
- package/src/actions/sync.ts +0 -4
- package/src/api.ts +0 -63
- package/src/index.ts +0 -62
- package/src/lib.ts +11 -12
- package/src/utils/code-utils.ts +1 -2
- package/src/utils/config-utils.ts +0 -6
- package/dist/actions/upload-bundle.d.ts +0 -15
- package/src/actions/upload-bundle.ts +0 -38
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;
|