@squiz/component-cli-lib 1.39.1-alpha.9 → 1.40.0

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.
@@ -3,6 +3,7 @@ import { ContentApi } from '@squiz/component-web-api-lib';
3
3
  interface Config {
4
4
  managementServiceUrl: string;
5
5
  renderServiceUrl: string;
6
+ pageRenderServiceUrl: string;
6
7
  contentServiceUrl: string;
7
8
  tenantId: string;
8
9
  jobServiceUrl: string;
@@ -11,15 +12,16 @@ interface Config {
11
12
  }
12
13
  declare const configObj: Config;
13
14
  export default configObj;
14
- export declare const authToken: string;
15
15
  export declare const managementService: import("axios").AxiosInstance;
16
16
  export declare const managementServiceRoot: import("axios").AxiosInstance;
17
17
  export declare const renderService: import("axios").AxiosInstance;
18
18
  export declare const contentService: import("axios").AxiosInstance;
19
+ export declare const pageRenderService: import("axios").AxiosInstance;
19
20
  export declare const jobService: import("axios").AxiosInstance;
20
21
  export declare const ci_buildVersion: string;
21
22
  export declare const ci_buildBranch: string;
22
23
  export declare function getTestComponents(): Promise<import("@squiz/component-lib").ManifestV1[]>;
24
+ export declare function getTestComponent(componentFolderName: string): Promise<import("@squiz/component-lib").ManifestV1[]>;
23
25
  export declare function getTestJobs(): Promise<import("@squiz/component-lib").ManifestV1[]>;
24
26
  export declare function createFile(filePath: string, sizeInMB: number): Promise<void>;
25
27
  export declare function removeFile(filePath: string): void;
@@ -27,7 +29,9 @@ export declare function deleteComponentSet(webPath: string): Promise<void>;
27
29
  export declare function addComponentSet(componentSet: ComponentSetWebModelForCreate): Promise<void>;
28
30
  export declare function addContentItem(contentItem: ContentApi.ContentItemWebModel): Promise<void>;
29
31
  export declare function deleteContentItem(contentItemId: string): Promise<void>;
32
+ export declare function deleteContentSchema(contentSchemaName: string): Promise<void>;
30
33
  export declare function deleteComponent(manifest: Manifest): Promise<void>;
31
34
  export declare function deleteComponents(manifests: Manifest[]): Promise<void>;
35
+ export declare function uploadTestComponent(componentFolderPath: string, tempFolderPath: string): Promise<void>;
32
36
  export declare function deleteJob(manifest: Manifest): Promise<void>;
33
37
  export declare function deleteJobs(manifests: Manifest[]): Promise<void>;