@solidpepper/solidpepper-service 1.0.6 → 1.0.7

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
@@ -322,6 +322,7 @@ interface Company {
322
322
  companyIndustryCode?: string;
323
323
  companyPhone?: string;
324
324
  companyLanguage?: string;
325
+ companyIsLearning?: boolean;
325
326
  }
326
327
 
327
328
  declare class CompaniesService {
@@ -341,7 +342,7 @@ declare class CompaniesService {
341
342
  getCurrentCompany(): Observable<Company>;
342
343
  getCompanyUsages(productSheetAssetGuid?: string, productSheetGuid?: string, templateGuid?: string): Observable<Object>;
343
344
  updateCompany(companyGuid: any, companyName: string, companyAddress?: string | null, companyAddress2?: string | null, companyAddress3?: string | null, companyZipCode?: string | null, companyCity?: string | null, companyState?: string | null, companyCountry?: string | null, companyRegistrationNumber?: string | null, companyVatNumber?: string | null, companyIndustryCode?: string | null, companyPhone?: string | null, companyLanguage?: string | null): Observable<Object>;
344
- createCompany(companyName: string, companyAlias?: string | null, companyLanguage?: string): Observable<{
345
+ createCompany(companyName: string, companyAlias?: string | null, companyLanguage?: string, isLearning?: boolean): Observable<{
345
346
  success: boolean;
346
347
  data?: string;
347
348
  message?: string;
@@ -1376,6 +1377,7 @@ declare class DamAssetsService {
1376
1377
  emptyTrash(): rxjs.Observable<Object>;
1377
1378
  removeBg(assetguid: any): rxjs.Observable<Object>;
1378
1379
  restoreOriginal(assetguid: any): rxjs.Observable<Object>;
1380
+ migrate(type: string): rxjs.Observable<Object>;
1379
1381
  static ɵfac: i0.ɵɵFactoryDeclaration<DamAssetsService, never>;
1380
1382
  static ɵprov: i0.ɵɵInjectableDeclaration<DamAssetsService>;
1381
1383
  }
@@ -2223,6 +2225,7 @@ declare class PublicationsService {
2223
2225
  private readonly http;
2224
2226
  private readonly _webSocket;
2225
2227
  constructor(_settingsService: SettingsService, http: HttpClient, _webSocket: websocketService);
2228
+ getFlipbookInfo(publicationGuid?: string, documentGuid?: string, alias?: string): Observable<any>;
2226
2229
  isPresent(publicationGuid: string, publicationDataReference: string, isSku: any): Observable<Object>;
2227
2230
  getAllPagesByPublication(publicationGuid: string, language: string): Observable<Object>;
2228
2231
  getExportEasycatalog(publicationGuid: string): Observable<Object>;
@@ -2251,6 +2254,7 @@ declare class PublicationsService {
2251
2254
  setPublicationCover(publicationGuid: string, covername: string): Observable<Object>;
2252
2255
  setPublicationStartPage(publicationGuid: string, startPageNumber: string): Observable<Object>;
2253
2256
  updateOrCreatePageInPublication(publicationPage: PublicationPage): Observable<Object>;
2257
+ copyPublicationPage(sourcePublicationGuid: string, sourcePageId: number, targetPublicationGuid: string, targetOrder?: number, name?: string): Observable<any>;
2254
2258
  updatePublicationField(publicationGuid: string, fieldName: string, fieldValue: any): Observable<Object>;
2255
2259
  updatePublicationDataField(publicationDataGuid: string, fieldName: string, fieldValue: any): Observable<Object>;
2256
2260
  moveSections(publicationPageId: string | number, number: number): Observable<Object>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solidpepper/solidpepper-service",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Services d'accès aux APIs Solidpepper",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.3.0",