@solidpepper/solidpepper-service 1.1.1 → 1.1.2
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/index.d.ts
CHANGED
|
@@ -1128,6 +1128,7 @@ declare class ExchangesConfigurationsService {
|
|
|
1128
1128
|
GetSkusRenamed(skusGuids: any, viewGuid: string, attributeGuid: string, fields: any, lang: string, isVariant: boolean, substitue: string): Observable$1<Object>;
|
|
1129
1129
|
ExportProcessAssetsRenaming(skusGuids: any, viewGuid: string, assetsGuids: any, configurationName: string, fields: any, mappingGuid: string, exchangeExtension: string, templateGuid: string, langs: any, isVariant: boolean): Observable$1<Object>;
|
|
1130
1130
|
AddExchangeConfiguration(exchangeConfigurationName: string, exchangeConfigurationContent: any, overwrite: boolean): Observable$1<Object>;
|
|
1131
|
+
DeleteExchangeConfiguration(exchangeConfigurationGuid: string): Observable$1<any>;
|
|
1131
1132
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExchangesConfigurationsService, never>;
|
|
1132
1133
|
static ɵprov: i0.ɵɵInjectableDeclaration<ExchangesConfigurationsService>;
|
|
1133
1134
|
}
|
|
@@ -1175,6 +1176,7 @@ declare class MenuService {
|
|
|
1175
1176
|
assetsOrphansLabel: any;
|
|
1176
1177
|
assetsProfilesLabel: any;
|
|
1177
1178
|
assetsSelectionsLabel: any;
|
|
1179
|
+
assetsConversionsLabel: any;
|
|
1178
1180
|
assetsOnHoldLabel: any;
|
|
1179
1181
|
assetsFavoritesLabel: any;
|
|
1180
1182
|
templatesLabel: any;
|
|
@@ -3410,6 +3412,7 @@ declare class ProductSheetsService {
|
|
|
3410
3412
|
private _webSocket;
|
|
3411
3413
|
constructor(_settingsService: SettingsService, http: HttpClient, _webSocket: websocketService);
|
|
3412
3414
|
getProductSheetsByAssetGuid(assetGuid: string): rxjs.Observable<Object>;
|
|
3415
|
+
exportProductSheetAsset(assetGuid: string): rxjs.Observable<Blob>;
|
|
3413
3416
|
getProductSheetLines(productSheetGuid: string, start?: number, limit?: number, summary?: boolean): rxjs.Observable<Object>;
|
|
3414
3417
|
getProductSheetColumns(assetGuid: string): rxjs.Observable<Object>;
|
|
3415
3418
|
getProductSheetLineByGuid(productSheetGuid: string, productSheetLineGuid: string): rxjs.Observable<Object>;
|
|
@@ -4450,7 +4453,7 @@ declare class DocumentsService {
|
|
|
4450
4453
|
constructor(_settingsService: SettingsService, http: HttpClient, _webSocket: websocketService);
|
|
4451
4454
|
getDocument(assetGuid: string): rxjs.Observable<Object>;
|
|
4452
4455
|
existDocument(assetGuid: string, version?: string): rxjs.Observable<Object>;
|
|
4453
|
-
createDocument(assetName: string, folderGuid: string): rxjs.Observable<Object>;
|
|
4456
|
+
createDocument(assetName: string, folderGuid: string, documentType?: string): rxjs.Observable<Object>;
|
|
4454
4457
|
duplicateDocument(assetGuid: string, documentName: string, publicationGuid?: string, folderGuid?: string): rxjs.Observable<Object>;
|
|
4455
4458
|
updateDocumentPagePosition(assetGuid: string, pageGuid: string, position: number): rxjs.Observable<Object>;
|
|
4456
4459
|
importDocumentFiles(assetGuid: string, overwrite: boolean, files: any[]): rxjs.Observable<Object>;
|
|
@@ -4580,6 +4583,7 @@ declare enum AssetType {
|
|
|
4580
4583
|
FILE = "file",
|
|
4581
4584
|
PRODUCTSHEET = "productSheet",
|
|
4582
4585
|
DATASHEETFILE = "datasheetfile",
|
|
4586
|
+
YOUBOOKY = "youbooky",
|
|
4583
4587
|
DOCUMENT = "document",
|
|
4584
4588
|
PUBLICATION = "publication",
|
|
4585
4589
|
TEMPLATE = "template",
|