@solidpepper/solidpepper-service 1.0.8 → 1.0.9
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/fesm2022/solidpepper-solidpepper-service.mjs +11029 -4989
- package/fesm2022/solidpepper-solidpepper-service.mjs.map +1 -1
- package/index.d.ts +2309 -528
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,64 +1,975 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
1
|
import * as rxjs from 'rxjs';
|
|
3
2
|
import { Observable } from 'rxjs';
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
4
|
import * as i0 from '@angular/core';
|
|
5
5
|
import { InjectionToken, NgZone, TemplateRef, ViewContainerRef, PipeTransform, OnInit, OnChanges, ElementRef, Renderer2, SimpleChanges } from '@angular/core';
|
|
6
6
|
import { Router } from '@angular/router';
|
|
7
|
-
import { TranslateService as TranslateService$1 } from '@ngx-translate/core';
|
|
8
7
|
import { MatDialog } from '@angular/material/dialog';
|
|
9
8
|
import * as signalR from '@aspnet/signalr';
|
|
10
9
|
import * as _angular_material_sidenav from '@angular/material/sidenav';
|
|
11
10
|
import { MatSidenav } from '@angular/material/sidenav';
|
|
12
11
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
12
|
+
import { Observable as Observable$1 } from 'rxjs/internal/Observable';
|
|
13
|
+
import { TranslateService as TranslateService$1 } from '@ngx-translate/core';
|
|
14
|
+
|
|
15
|
+
declare const SOLIDPEPPER_TOKEN_GETTER: InjectionToken<() => string>;
|
|
16
|
+
declare const SOLIDPEPPER_API_URL: InjectionToken<string>;
|
|
17
|
+
declare class SettingsService {
|
|
18
|
+
private http;
|
|
19
|
+
private tokenGetter?;
|
|
20
|
+
private injectedApiUrl?;
|
|
21
|
+
private user;
|
|
22
|
+
private app;
|
|
23
|
+
private layout;
|
|
24
|
+
private settings;
|
|
25
|
+
private primoTexto;
|
|
26
|
+
private headers;
|
|
27
|
+
private customToken?;
|
|
28
|
+
private alias;
|
|
29
|
+
constructor(http: HttpClient, tokenGetter?: (() => string) | undefined, injectedApiUrl?: string | undefined);
|
|
30
|
+
setToken(token: string): void;
|
|
31
|
+
getToken(): string | null;
|
|
32
|
+
updateMaintenance(): rxjs.Observable<Object>;
|
|
33
|
+
getLanguage(): any;
|
|
34
|
+
getHeaders(): any;
|
|
35
|
+
getPrimoTexto(name: string | number): any;
|
|
36
|
+
getSettings(name: string): any;
|
|
37
|
+
getAppSetting(name: string | number): any;
|
|
38
|
+
getUserSetting(name: string | number): any;
|
|
39
|
+
getLayoutSetting(name: string): any;
|
|
40
|
+
setSettings(name: string | number, value: any): void;
|
|
41
|
+
setAppSetting(name: string | number, value: any): void;
|
|
42
|
+
setUserSetting(name: string | number, value: any): void;
|
|
43
|
+
setLayoutSetting(name: string, value: boolean): void;
|
|
44
|
+
toggleLayoutSetting(name: any): void;
|
|
45
|
+
getAlias(): string;
|
|
46
|
+
setAlias(alias: string): void;
|
|
47
|
+
getLogin(alias: string): void;
|
|
48
|
+
getRightsAccesModuleFromApi(login: string, companyGuid?: string | null): rxjs.Observable<Object>;
|
|
49
|
+
getRightsAccesModuleForOneProfile(profileGuid: any): rxjs.Observable<Object>;
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SettingsService, [null, { optional: true; }, { optional: true; }]>;
|
|
51
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SettingsService>;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
declare class CompanyService {
|
|
55
|
+
private http;
|
|
56
|
+
private _settingsService;
|
|
57
|
+
constructor(http: HttpClient, _settingsService: SettingsService);
|
|
58
|
+
getAccountSettings(): rxjs.Observable<Object>;
|
|
59
|
+
getActiveSession(): rxjs.Observable<Object>;
|
|
60
|
+
updateField(settingGuid: any, fieldName: any, fieldValue: any): rxjs.Observable<Object>;
|
|
61
|
+
uploadLogo(settingGuid: string): rxjs.Observable<Object>;
|
|
62
|
+
getConnections(start: string | number, limit: string | number, login: string, sort: string, direction: string): rxjs.Observable<Object>;
|
|
63
|
+
addConnection(login: any): rxjs.Observable<Object>;
|
|
64
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CompanyService, never>;
|
|
65
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CompanyService>;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
declare class RightsService {
|
|
69
|
+
private rightsAccessModule;
|
|
70
|
+
constructor();
|
|
71
|
+
sendRights(rights: any): void;
|
|
72
|
+
getRights(): Observable<any>;
|
|
73
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RightsService, never>;
|
|
74
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RightsService>;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
declare class NotificationServiceService$1 {
|
|
78
|
+
private _settingsService;
|
|
79
|
+
private http;
|
|
80
|
+
private quantity;
|
|
81
|
+
private sidenav?;
|
|
82
|
+
constructor(_settingsService: SettingsService, http: HttpClient);
|
|
83
|
+
sendUpdate(message: number): void;
|
|
84
|
+
getUpdate(): Observable<any>;
|
|
85
|
+
getNotifications(start?: any, limit?: any): Observable<Object>;
|
|
86
|
+
markAllView(): Observable<Object>;
|
|
87
|
+
markasreaded(notificationGuid: string): Observable<Object>;
|
|
88
|
+
setSidenav(sidenav: MatSidenav): void;
|
|
89
|
+
open(): Promise<_angular_material_sidenav.MatDrawerToggleResult> | undefined;
|
|
90
|
+
close(): Promise<_angular_material_sidenav.MatDrawerToggleResult> | undefined;
|
|
91
|
+
toggle(): void;
|
|
92
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationServiceService$1, never>;
|
|
93
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationServiceService$1>;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
declare class websocketService {
|
|
97
|
+
private _settings;
|
|
98
|
+
_router: Router;
|
|
99
|
+
private rights;
|
|
100
|
+
_notification: NotificationServiceService$1;
|
|
101
|
+
private ngZone;
|
|
102
|
+
connection: signalR.HubConnection;
|
|
103
|
+
isConnected: boolean;
|
|
104
|
+
private userLogin;
|
|
105
|
+
informationMessage: any;
|
|
106
|
+
deliberateDisconnect: boolean;
|
|
107
|
+
room: any;
|
|
108
|
+
constructor(_settings: SettingsService, _router: Router, rights: RightsService, _notification: NotificationServiceService$1, ngZone: NgZone);
|
|
109
|
+
initConnection(): void;
|
|
110
|
+
connect(): void;
|
|
111
|
+
listeners(): void;
|
|
112
|
+
listenersOnClose(): void;
|
|
113
|
+
disconnect(): void;
|
|
114
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<websocketService, never>;
|
|
115
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<websocketService>;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
declare class AuthService {
|
|
119
|
+
private myRoute;
|
|
120
|
+
private http;
|
|
121
|
+
private _settingsService;
|
|
122
|
+
private _companies;
|
|
123
|
+
private dialog;
|
|
124
|
+
private _webSocket;
|
|
125
|
+
private modalService;
|
|
126
|
+
private tokenPotential;
|
|
127
|
+
private accountSetting;
|
|
128
|
+
private authenticateObjectWithRight;
|
|
129
|
+
closeModal: string;
|
|
130
|
+
constructor(myRoute: Router, http: HttpClient, _settingsService: SettingsService, _companies: CompanyService, dialog: MatDialog, _webSocket: websocketService, modalService: NgbModal);
|
|
131
|
+
getAccountSetting(): any;
|
|
132
|
+
setAccountSetting(accountSetting: any): void;
|
|
133
|
+
sendToken(token: string): void;
|
|
134
|
+
sendTokenIframe(token: string): void;
|
|
135
|
+
stockTokenForDoubleAuth(token: string): void;
|
|
136
|
+
getTokenPotential(): string;
|
|
137
|
+
logout(): void;
|
|
138
|
+
logoutWithoutToken(): void;
|
|
139
|
+
logoutServiceApi(): rxjs.Observable<Object>;
|
|
140
|
+
setRight(authenticateObjectWithRight: {
|
|
141
|
+
[x: string]: {};
|
|
142
|
+
}): void;
|
|
143
|
+
getRightFromApi(): rxjs.Observable<Object>;
|
|
144
|
+
getRighFromAngularService(rightName: string | number): any;
|
|
145
|
+
triggerModalMatDialog(content: TemplateRef<any>, viewContainerRef?: ViewContainerRef): Promise<any>;
|
|
146
|
+
closeAllModalMatDialog(): void;
|
|
147
|
+
triggerModal(content: any): Promise<any>;
|
|
148
|
+
closeAllModal(): void;
|
|
149
|
+
private getDismissReason;
|
|
150
|
+
isLoggedIn(): boolean;
|
|
151
|
+
getPermissions(): string;
|
|
152
|
+
checkErrorApiCall(error: {
|
|
153
|
+
status: number;
|
|
154
|
+
}): void;
|
|
155
|
+
delay(ms: number): Promise<unknown>;
|
|
156
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
|
|
157
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
declare class AllLanguagesService {
|
|
161
|
+
private languagesData;
|
|
162
|
+
constructor();
|
|
163
|
+
getLanguagesData(): {
|
|
164
|
+
ab: {
|
|
165
|
+
name: string;
|
|
166
|
+
nativeName: string;
|
|
167
|
+
};
|
|
168
|
+
aa: {
|
|
169
|
+
name: string;
|
|
170
|
+
nativeName: string;
|
|
171
|
+
};
|
|
172
|
+
af: {
|
|
173
|
+
name: string;
|
|
174
|
+
nativeName: string;
|
|
175
|
+
};
|
|
176
|
+
ak: {
|
|
177
|
+
name: string;
|
|
178
|
+
nativeName: string;
|
|
179
|
+
};
|
|
180
|
+
sq: {
|
|
181
|
+
name: string;
|
|
182
|
+
nativeName: string;
|
|
183
|
+
};
|
|
184
|
+
am: {
|
|
185
|
+
name: string;
|
|
186
|
+
nativeName: string;
|
|
187
|
+
};
|
|
188
|
+
ar: {
|
|
189
|
+
name: string;
|
|
190
|
+
nativeName: string;
|
|
191
|
+
};
|
|
192
|
+
an: {
|
|
193
|
+
name: string;
|
|
194
|
+
nativeName: string;
|
|
195
|
+
};
|
|
196
|
+
hy: {
|
|
197
|
+
name: string;
|
|
198
|
+
nativeName: string;
|
|
199
|
+
};
|
|
200
|
+
as: {
|
|
201
|
+
name: string;
|
|
202
|
+
nativeName: string;
|
|
203
|
+
};
|
|
204
|
+
av: {
|
|
205
|
+
name: string;
|
|
206
|
+
nativeName: string;
|
|
207
|
+
};
|
|
208
|
+
ae: {
|
|
209
|
+
name: string;
|
|
210
|
+
nativeName: string;
|
|
211
|
+
};
|
|
212
|
+
ay: {
|
|
213
|
+
name: string;
|
|
214
|
+
nativeName: string;
|
|
215
|
+
};
|
|
216
|
+
az: {
|
|
217
|
+
name: string;
|
|
218
|
+
nativeName: string;
|
|
219
|
+
};
|
|
220
|
+
bm: {
|
|
221
|
+
name: string;
|
|
222
|
+
nativeName: string;
|
|
223
|
+
};
|
|
224
|
+
ba: {
|
|
225
|
+
name: string;
|
|
226
|
+
nativeName: string;
|
|
227
|
+
};
|
|
228
|
+
eu: {
|
|
229
|
+
name: string;
|
|
230
|
+
nativeName: string;
|
|
231
|
+
};
|
|
232
|
+
be: {
|
|
233
|
+
name: string;
|
|
234
|
+
nativeName: string;
|
|
235
|
+
};
|
|
236
|
+
bn: {
|
|
237
|
+
name: string;
|
|
238
|
+
nativeName: string;
|
|
239
|
+
};
|
|
240
|
+
bh: {
|
|
241
|
+
name: string;
|
|
242
|
+
nativeName: string;
|
|
243
|
+
};
|
|
244
|
+
bi: {
|
|
245
|
+
name: string;
|
|
246
|
+
nativeName: string;
|
|
247
|
+
};
|
|
248
|
+
bs: {
|
|
249
|
+
name: string;
|
|
250
|
+
nativeName: string;
|
|
251
|
+
};
|
|
252
|
+
br: {
|
|
253
|
+
name: string;
|
|
254
|
+
nativeName: string;
|
|
255
|
+
};
|
|
256
|
+
bg: {
|
|
257
|
+
name: string;
|
|
258
|
+
nativeName: string;
|
|
259
|
+
};
|
|
260
|
+
my: {
|
|
261
|
+
name: string;
|
|
262
|
+
nativeName: string;
|
|
263
|
+
};
|
|
264
|
+
ca: {
|
|
265
|
+
name: string;
|
|
266
|
+
nativeName: string;
|
|
267
|
+
};
|
|
268
|
+
ch: {
|
|
269
|
+
name: string;
|
|
270
|
+
nativeName: string;
|
|
271
|
+
};
|
|
272
|
+
ce: {
|
|
273
|
+
name: string;
|
|
274
|
+
nativeName: string;
|
|
275
|
+
};
|
|
276
|
+
ny: {
|
|
277
|
+
name: string;
|
|
278
|
+
nativeName: string;
|
|
279
|
+
};
|
|
280
|
+
zh: {
|
|
281
|
+
name: string;
|
|
282
|
+
nativeName: string;
|
|
283
|
+
};
|
|
284
|
+
cv: {
|
|
285
|
+
name: string;
|
|
286
|
+
nativeName: string;
|
|
287
|
+
};
|
|
288
|
+
kw: {
|
|
289
|
+
name: string;
|
|
290
|
+
nativeName: string;
|
|
291
|
+
};
|
|
292
|
+
co: {
|
|
293
|
+
name: string;
|
|
294
|
+
nativeName: string;
|
|
295
|
+
};
|
|
296
|
+
cr: {
|
|
297
|
+
name: string;
|
|
298
|
+
nativeName: string;
|
|
299
|
+
};
|
|
300
|
+
hr: {
|
|
301
|
+
name: string;
|
|
302
|
+
nativeName: string;
|
|
303
|
+
};
|
|
304
|
+
cs: {
|
|
305
|
+
name: string;
|
|
306
|
+
nativeName: string;
|
|
307
|
+
};
|
|
308
|
+
da: {
|
|
309
|
+
name: string;
|
|
310
|
+
nativeName: string;
|
|
311
|
+
};
|
|
312
|
+
dv: {
|
|
313
|
+
name: string;
|
|
314
|
+
nativeName: string;
|
|
315
|
+
};
|
|
316
|
+
nl: {
|
|
317
|
+
name: string;
|
|
318
|
+
nativeName: string;
|
|
319
|
+
};
|
|
320
|
+
en: {
|
|
321
|
+
name: string;
|
|
322
|
+
nativeName: string;
|
|
323
|
+
};
|
|
324
|
+
eo: {
|
|
325
|
+
name: string;
|
|
326
|
+
nativeName: string;
|
|
327
|
+
};
|
|
328
|
+
et: {
|
|
329
|
+
name: string;
|
|
330
|
+
nativeName: string;
|
|
331
|
+
};
|
|
332
|
+
ee: {
|
|
333
|
+
name: string;
|
|
334
|
+
nativeName: string;
|
|
335
|
+
};
|
|
336
|
+
fo: {
|
|
337
|
+
name: string;
|
|
338
|
+
nativeName: string;
|
|
339
|
+
};
|
|
340
|
+
fj: {
|
|
341
|
+
name: string;
|
|
342
|
+
nativeName: string;
|
|
343
|
+
};
|
|
344
|
+
fi: {
|
|
345
|
+
name: string;
|
|
346
|
+
nativeName: string;
|
|
347
|
+
};
|
|
348
|
+
fr: {
|
|
349
|
+
name: string;
|
|
350
|
+
nativeName: string;
|
|
351
|
+
};
|
|
352
|
+
ff: {
|
|
353
|
+
name: string;
|
|
354
|
+
nativeName: string;
|
|
355
|
+
};
|
|
356
|
+
gl: {
|
|
357
|
+
name: string;
|
|
358
|
+
nativeName: string;
|
|
359
|
+
};
|
|
360
|
+
ka: {
|
|
361
|
+
name: string;
|
|
362
|
+
nativeName: string;
|
|
363
|
+
};
|
|
364
|
+
de: {
|
|
365
|
+
name: string;
|
|
366
|
+
nativeName: string;
|
|
367
|
+
};
|
|
368
|
+
el: {
|
|
369
|
+
name: string;
|
|
370
|
+
nativeName: string;
|
|
371
|
+
};
|
|
372
|
+
gn: {
|
|
373
|
+
name: string;
|
|
374
|
+
nativeName: string;
|
|
375
|
+
};
|
|
376
|
+
gu: {
|
|
377
|
+
name: string;
|
|
378
|
+
nativeName: string;
|
|
379
|
+
};
|
|
380
|
+
ht: {
|
|
381
|
+
name: string;
|
|
382
|
+
nativeName: string;
|
|
383
|
+
};
|
|
384
|
+
ha: {
|
|
385
|
+
name: string;
|
|
386
|
+
nativeName: string;
|
|
387
|
+
};
|
|
388
|
+
he: {
|
|
389
|
+
name: string;
|
|
390
|
+
nativeName: string;
|
|
391
|
+
};
|
|
392
|
+
hz: {
|
|
393
|
+
name: string;
|
|
394
|
+
nativeName: string;
|
|
395
|
+
};
|
|
396
|
+
hi: {
|
|
397
|
+
name: string;
|
|
398
|
+
nativeName: string;
|
|
399
|
+
};
|
|
400
|
+
ho: {
|
|
401
|
+
name: string;
|
|
402
|
+
nativeName: string;
|
|
403
|
+
};
|
|
404
|
+
hu: {
|
|
405
|
+
name: string;
|
|
406
|
+
nativeName: string;
|
|
407
|
+
};
|
|
408
|
+
ia: {
|
|
409
|
+
name: string;
|
|
410
|
+
nativeName: string;
|
|
411
|
+
};
|
|
412
|
+
id: {
|
|
413
|
+
name: string;
|
|
414
|
+
nativeName: string;
|
|
415
|
+
};
|
|
416
|
+
ie: {
|
|
417
|
+
name: string;
|
|
418
|
+
nativeName: string;
|
|
419
|
+
};
|
|
420
|
+
ga: {
|
|
421
|
+
name: string;
|
|
422
|
+
nativeName: string;
|
|
423
|
+
};
|
|
424
|
+
ig: {
|
|
425
|
+
name: string;
|
|
426
|
+
nativeName: string;
|
|
427
|
+
};
|
|
428
|
+
ik: {
|
|
429
|
+
name: string;
|
|
430
|
+
nativeName: string;
|
|
431
|
+
};
|
|
432
|
+
io: {
|
|
433
|
+
name: string;
|
|
434
|
+
nativeName: string;
|
|
435
|
+
};
|
|
436
|
+
is: {
|
|
437
|
+
name: string;
|
|
438
|
+
nativeName: string;
|
|
439
|
+
};
|
|
440
|
+
it: {
|
|
441
|
+
name: string;
|
|
442
|
+
nativeName: string;
|
|
443
|
+
};
|
|
444
|
+
iu: {
|
|
445
|
+
name: string;
|
|
446
|
+
nativeName: string;
|
|
447
|
+
};
|
|
448
|
+
ja: {
|
|
449
|
+
name: string;
|
|
450
|
+
nativeName: string;
|
|
451
|
+
};
|
|
452
|
+
jv: {
|
|
453
|
+
name: string;
|
|
454
|
+
nativeName: string;
|
|
455
|
+
};
|
|
456
|
+
kl: {
|
|
457
|
+
name: string;
|
|
458
|
+
nativeName: string;
|
|
459
|
+
};
|
|
460
|
+
kn: {
|
|
461
|
+
name: string;
|
|
462
|
+
nativeName: string;
|
|
463
|
+
};
|
|
464
|
+
kr: {
|
|
465
|
+
name: string;
|
|
466
|
+
nativeName: string;
|
|
467
|
+
};
|
|
468
|
+
ks: {
|
|
469
|
+
name: string;
|
|
470
|
+
nativeName: string;
|
|
471
|
+
};
|
|
472
|
+
kk: {
|
|
473
|
+
name: string;
|
|
474
|
+
nativeName: string;
|
|
475
|
+
};
|
|
476
|
+
km: {
|
|
477
|
+
name: string;
|
|
478
|
+
nativeName: string;
|
|
479
|
+
};
|
|
480
|
+
ki: {
|
|
481
|
+
name: string;
|
|
482
|
+
nativeName: string;
|
|
483
|
+
};
|
|
484
|
+
rw: {
|
|
485
|
+
name: string;
|
|
486
|
+
nativeName: string;
|
|
487
|
+
};
|
|
488
|
+
ky: {
|
|
489
|
+
name: string;
|
|
490
|
+
nativeName: string;
|
|
491
|
+
};
|
|
492
|
+
kv: {
|
|
493
|
+
name: string;
|
|
494
|
+
nativeName: string;
|
|
495
|
+
};
|
|
496
|
+
kg: {
|
|
497
|
+
name: string;
|
|
498
|
+
nativeName: string;
|
|
499
|
+
};
|
|
500
|
+
ko: {
|
|
501
|
+
name: string;
|
|
502
|
+
nativeName: string;
|
|
503
|
+
};
|
|
504
|
+
ku: {
|
|
505
|
+
name: string;
|
|
506
|
+
nativeName: string;
|
|
507
|
+
};
|
|
508
|
+
kj: {
|
|
509
|
+
name: string;
|
|
510
|
+
nativeName: string;
|
|
511
|
+
};
|
|
512
|
+
la: {
|
|
513
|
+
name: string;
|
|
514
|
+
nativeName: string;
|
|
515
|
+
};
|
|
516
|
+
lb: {
|
|
517
|
+
name: string;
|
|
518
|
+
nativeName: string;
|
|
519
|
+
};
|
|
520
|
+
lg: {
|
|
521
|
+
name: string;
|
|
522
|
+
nativeName: string;
|
|
523
|
+
};
|
|
524
|
+
li: {
|
|
525
|
+
name: string;
|
|
526
|
+
nativeName: string;
|
|
527
|
+
};
|
|
528
|
+
ln: {
|
|
529
|
+
name: string;
|
|
530
|
+
nativeName: string;
|
|
531
|
+
};
|
|
532
|
+
lo: {
|
|
533
|
+
name: string;
|
|
534
|
+
nativeName: string;
|
|
535
|
+
};
|
|
536
|
+
lt: {
|
|
537
|
+
name: string;
|
|
538
|
+
nativeName: string;
|
|
539
|
+
};
|
|
540
|
+
lu: {
|
|
541
|
+
name: string;
|
|
542
|
+
nativeName: string;
|
|
543
|
+
};
|
|
544
|
+
lv: {
|
|
545
|
+
name: string;
|
|
546
|
+
nativeName: string;
|
|
547
|
+
};
|
|
548
|
+
gv: {
|
|
549
|
+
name: string;
|
|
550
|
+
nativeName: string;
|
|
551
|
+
};
|
|
552
|
+
mk: {
|
|
553
|
+
name: string;
|
|
554
|
+
nativeName: string;
|
|
555
|
+
};
|
|
556
|
+
mg: {
|
|
557
|
+
name: string;
|
|
558
|
+
nativeName: string;
|
|
559
|
+
};
|
|
560
|
+
ms: {
|
|
561
|
+
name: string;
|
|
562
|
+
nativeName: string;
|
|
563
|
+
};
|
|
564
|
+
ml: {
|
|
565
|
+
name: string;
|
|
566
|
+
nativeName: string;
|
|
567
|
+
};
|
|
568
|
+
mt: {
|
|
569
|
+
name: string;
|
|
570
|
+
nativeName: string;
|
|
571
|
+
};
|
|
572
|
+
mi: {
|
|
573
|
+
name: string;
|
|
574
|
+
nativeName: string;
|
|
575
|
+
};
|
|
576
|
+
mr: {
|
|
577
|
+
name: string;
|
|
578
|
+
nativeName: string;
|
|
579
|
+
};
|
|
580
|
+
mh: {
|
|
581
|
+
name: string;
|
|
582
|
+
nativeName: string;
|
|
583
|
+
};
|
|
584
|
+
mn: {
|
|
585
|
+
name: string;
|
|
586
|
+
nativeName: string;
|
|
587
|
+
};
|
|
588
|
+
na: {
|
|
589
|
+
name: string;
|
|
590
|
+
nativeName: string;
|
|
591
|
+
};
|
|
592
|
+
nv: {
|
|
593
|
+
name: string;
|
|
594
|
+
nativeName: string;
|
|
595
|
+
};
|
|
596
|
+
nb: {
|
|
597
|
+
name: string;
|
|
598
|
+
nativeName: string;
|
|
599
|
+
};
|
|
600
|
+
nd: {
|
|
601
|
+
name: string;
|
|
602
|
+
nativeName: string;
|
|
603
|
+
};
|
|
604
|
+
ne: {
|
|
605
|
+
name: string;
|
|
606
|
+
nativeName: string;
|
|
607
|
+
};
|
|
608
|
+
ng: {
|
|
609
|
+
name: string;
|
|
610
|
+
nativeName: string;
|
|
611
|
+
};
|
|
612
|
+
nn: {
|
|
613
|
+
name: string;
|
|
614
|
+
nativeName: string;
|
|
615
|
+
};
|
|
616
|
+
no: {
|
|
617
|
+
name: string;
|
|
618
|
+
nativeName: string;
|
|
619
|
+
};
|
|
620
|
+
ii: {
|
|
621
|
+
name: string;
|
|
622
|
+
nativeName: string;
|
|
623
|
+
};
|
|
624
|
+
nr: {
|
|
625
|
+
name: string;
|
|
626
|
+
nativeName: string;
|
|
627
|
+
};
|
|
628
|
+
oc: {
|
|
629
|
+
name: string;
|
|
630
|
+
nativeName: string;
|
|
631
|
+
};
|
|
632
|
+
oj: {
|
|
633
|
+
name: string;
|
|
634
|
+
nativeName: string;
|
|
635
|
+
};
|
|
636
|
+
cu: {
|
|
637
|
+
name: string;
|
|
638
|
+
nativeName: string;
|
|
639
|
+
};
|
|
640
|
+
om: {
|
|
641
|
+
name: string;
|
|
642
|
+
nativeName: string;
|
|
643
|
+
};
|
|
644
|
+
or: {
|
|
645
|
+
name: string;
|
|
646
|
+
nativeName: string;
|
|
647
|
+
};
|
|
648
|
+
os: {
|
|
649
|
+
name: string;
|
|
650
|
+
nativeName: string;
|
|
651
|
+
};
|
|
652
|
+
pa: {
|
|
653
|
+
name: string;
|
|
654
|
+
nativeName: string;
|
|
655
|
+
};
|
|
656
|
+
pi: {
|
|
657
|
+
name: string;
|
|
658
|
+
nativeName: string;
|
|
659
|
+
};
|
|
660
|
+
fa: {
|
|
661
|
+
name: string;
|
|
662
|
+
nativeName: string;
|
|
663
|
+
};
|
|
664
|
+
pl: {
|
|
665
|
+
name: string;
|
|
666
|
+
nativeName: string;
|
|
667
|
+
};
|
|
668
|
+
ps: {
|
|
669
|
+
name: string;
|
|
670
|
+
nativeName: string;
|
|
671
|
+
};
|
|
672
|
+
pt: {
|
|
673
|
+
name: string;
|
|
674
|
+
nativeName: string;
|
|
675
|
+
};
|
|
676
|
+
qu: {
|
|
677
|
+
name: string;
|
|
678
|
+
nativeName: string;
|
|
679
|
+
};
|
|
680
|
+
rm: {
|
|
681
|
+
name: string;
|
|
682
|
+
nativeName: string;
|
|
683
|
+
};
|
|
684
|
+
rn: {
|
|
685
|
+
name: string;
|
|
686
|
+
nativeName: string;
|
|
687
|
+
};
|
|
688
|
+
ro: {
|
|
689
|
+
name: string;
|
|
690
|
+
nativeName: string;
|
|
691
|
+
};
|
|
692
|
+
ru: {
|
|
693
|
+
name: string;
|
|
694
|
+
nativeName: string;
|
|
695
|
+
};
|
|
696
|
+
sa: {
|
|
697
|
+
name: string;
|
|
698
|
+
nativeName: string;
|
|
699
|
+
};
|
|
700
|
+
sc: {
|
|
701
|
+
name: string;
|
|
702
|
+
nativeName: string;
|
|
703
|
+
};
|
|
704
|
+
sd: {
|
|
705
|
+
name: string;
|
|
706
|
+
nativeName: string;
|
|
707
|
+
};
|
|
708
|
+
se: {
|
|
709
|
+
name: string;
|
|
710
|
+
nativeName: string;
|
|
711
|
+
};
|
|
712
|
+
sm: {
|
|
713
|
+
name: string;
|
|
714
|
+
nativeName: string;
|
|
715
|
+
};
|
|
716
|
+
sg: {
|
|
717
|
+
name: string;
|
|
718
|
+
nativeName: string;
|
|
719
|
+
};
|
|
720
|
+
sr: {
|
|
721
|
+
name: string;
|
|
722
|
+
nativeName: string;
|
|
723
|
+
};
|
|
724
|
+
gd: {
|
|
725
|
+
name: string;
|
|
726
|
+
nativeName: string;
|
|
727
|
+
};
|
|
728
|
+
sn: {
|
|
729
|
+
name: string;
|
|
730
|
+
nativeName: string;
|
|
731
|
+
};
|
|
732
|
+
si: {
|
|
733
|
+
name: string;
|
|
734
|
+
nativeName: string;
|
|
735
|
+
};
|
|
736
|
+
sk: {
|
|
737
|
+
name: string;
|
|
738
|
+
nativeName: string;
|
|
739
|
+
};
|
|
740
|
+
sl: {
|
|
741
|
+
name: string;
|
|
742
|
+
nativeName: string;
|
|
743
|
+
};
|
|
744
|
+
so: {
|
|
745
|
+
name: string;
|
|
746
|
+
nativeName: string;
|
|
747
|
+
};
|
|
748
|
+
st: {
|
|
749
|
+
name: string;
|
|
750
|
+
nativeName: string;
|
|
751
|
+
};
|
|
752
|
+
es: {
|
|
753
|
+
name: string;
|
|
754
|
+
nativeName: string;
|
|
755
|
+
};
|
|
756
|
+
su: {
|
|
757
|
+
name: string;
|
|
758
|
+
nativeName: string;
|
|
759
|
+
};
|
|
760
|
+
sw: {
|
|
761
|
+
name: string;
|
|
762
|
+
nativeName: string;
|
|
763
|
+
};
|
|
764
|
+
ss: {
|
|
765
|
+
name: string;
|
|
766
|
+
nativeName: string;
|
|
767
|
+
};
|
|
768
|
+
sv: {
|
|
769
|
+
name: string;
|
|
770
|
+
nativeName: string;
|
|
771
|
+
};
|
|
772
|
+
ta: {
|
|
773
|
+
name: string;
|
|
774
|
+
nativeName: string;
|
|
775
|
+
};
|
|
776
|
+
te: {
|
|
777
|
+
name: string;
|
|
778
|
+
nativeName: string;
|
|
779
|
+
};
|
|
780
|
+
tg: {
|
|
781
|
+
name: string;
|
|
782
|
+
nativeName: string;
|
|
783
|
+
};
|
|
784
|
+
th: {
|
|
785
|
+
name: string;
|
|
786
|
+
nativeName: string;
|
|
787
|
+
};
|
|
788
|
+
ti: {
|
|
789
|
+
name: string;
|
|
790
|
+
nativeName: string;
|
|
791
|
+
};
|
|
792
|
+
bo: {
|
|
793
|
+
name: string;
|
|
794
|
+
nativeName: string;
|
|
795
|
+
};
|
|
796
|
+
tk: {
|
|
797
|
+
name: string;
|
|
798
|
+
nativeName: string;
|
|
799
|
+
};
|
|
800
|
+
tl: {
|
|
801
|
+
name: string;
|
|
802
|
+
nativeName: string;
|
|
803
|
+
};
|
|
804
|
+
tn: {
|
|
805
|
+
name: string;
|
|
806
|
+
nativeName: string;
|
|
807
|
+
};
|
|
808
|
+
to: {
|
|
809
|
+
name: string;
|
|
810
|
+
nativeName: string;
|
|
811
|
+
};
|
|
812
|
+
tr: {
|
|
813
|
+
name: string;
|
|
814
|
+
nativeName: string;
|
|
815
|
+
};
|
|
816
|
+
ts: {
|
|
817
|
+
name: string;
|
|
818
|
+
nativeName: string;
|
|
819
|
+
};
|
|
820
|
+
tt: {
|
|
821
|
+
name: string;
|
|
822
|
+
nativeName: string;
|
|
823
|
+
};
|
|
824
|
+
tw: {
|
|
825
|
+
name: string;
|
|
826
|
+
nativeName: string;
|
|
827
|
+
};
|
|
828
|
+
ty: {
|
|
829
|
+
name: string;
|
|
830
|
+
nativeName: string;
|
|
831
|
+
};
|
|
832
|
+
ug: {
|
|
833
|
+
name: string;
|
|
834
|
+
nativeName: string;
|
|
835
|
+
};
|
|
836
|
+
uk: {
|
|
837
|
+
name: string;
|
|
838
|
+
nativeName: string;
|
|
839
|
+
};
|
|
840
|
+
ur: {
|
|
841
|
+
name: string;
|
|
842
|
+
nativeName: string;
|
|
843
|
+
};
|
|
844
|
+
uz: {
|
|
845
|
+
name: string;
|
|
846
|
+
nativeName: string;
|
|
847
|
+
};
|
|
848
|
+
ve: {
|
|
849
|
+
name: string;
|
|
850
|
+
nativeName: string;
|
|
851
|
+
};
|
|
852
|
+
vi: {
|
|
853
|
+
name: string;
|
|
854
|
+
nativeName: string;
|
|
855
|
+
};
|
|
856
|
+
vo: {
|
|
857
|
+
name: string;
|
|
858
|
+
nativeName: string;
|
|
859
|
+
};
|
|
860
|
+
wa: {
|
|
861
|
+
name: string;
|
|
862
|
+
nativeName: string;
|
|
863
|
+
};
|
|
864
|
+
cy: {
|
|
865
|
+
name: string;
|
|
866
|
+
nativeName: string;
|
|
867
|
+
};
|
|
868
|
+
wo: {
|
|
869
|
+
name: string;
|
|
870
|
+
nativeName: string;
|
|
871
|
+
};
|
|
872
|
+
fy: {
|
|
873
|
+
name: string;
|
|
874
|
+
nativeName: string;
|
|
875
|
+
};
|
|
876
|
+
xh: {
|
|
877
|
+
name: string;
|
|
878
|
+
nativeName: string;
|
|
879
|
+
};
|
|
880
|
+
yi: {
|
|
881
|
+
name: string;
|
|
882
|
+
nativeName: string;
|
|
883
|
+
};
|
|
884
|
+
yo: {
|
|
885
|
+
name: string;
|
|
886
|
+
nativeName: string;
|
|
887
|
+
};
|
|
888
|
+
za: {
|
|
889
|
+
name: string;
|
|
890
|
+
nativeName: string;
|
|
891
|
+
};
|
|
892
|
+
};
|
|
893
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AllLanguagesService, never>;
|
|
894
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AllLanguagesService>;
|
|
895
|
+
}
|
|
13
896
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
897
|
+
interface Prompt {
|
|
898
|
+
promptguid: string;
|
|
899
|
+
promptname: string;
|
|
900
|
+
prompttype: 'text' | 'image';
|
|
901
|
+
promptcontent: string;
|
|
902
|
+
promptisfavorite: boolean;
|
|
903
|
+
promptcreatedat: string;
|
|
904
|
+
promptmodifiedat: string;
|
|
905
|
+
promptusedat?: string;
|
|
906
|
+
promptowner?: string;
|
|
907
|
+
}
|
|
908
|
+
declare class PromptsService {
|
|
909
|
+
private http;
|
|
910
|
+
private _settingsService;
|
|
911
|
+
constructor(http: HttpClient, _settingsService: SettingsService);
|
|
912
|
+
getAllPrompts(): Observable<any>;
|
|
913
|
+
getPromptsByType(type: 'text' | 'image'): Observable<any>;
|
|
914
|
+
createPrompt(data: {
|
|
915
|
+
name: string;
|
|
916
|
+
type: 'text' | 'image';
|
|
917
|
+
content: string;
|
|
918
|
+
}): Observable<any>;
|
|
919
|
+
updatePrompt(guid: string, data: {
|
|
920
|
+
name: string;
|
|
921
|
+
type: 'text' | 'image';
|
|
922
|
+
content: string;
|
|
923
|
+
isFavorite: boolean;
|
|
924
|
+
}): Observable<any>;
|
|
925
|
+
deletePrompt(guid: string): Observable<any>;
|
|
926
|
+
markPromptAsUsed(guid: string): Observable<any>;
|
|
927
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PromptsService, never>;
|
|
928
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PromptsService>;
|
|
21
929
|
}
|
|
22
930
|
|
|
23
|
-
declare
|
|
24
|
-
declare const SOLIDPEPPER_API_URL: InjectionToken<string>;
|
|
25
|
-
declare class SettingsService {
|
|
931
|
+
declare class OpenAiService {
|
|
26
932
|
private http;
|
|
27
|
-
private
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
933
|
+
private _settingsService;
|
|
934
|
+
constructor(http: HttpClient, _settingsService: SettingsService);
|
|
935
|
+
generateDescription(skuname: any, assets: any, styles: any, extra: any, purpose: any, maxSize: any, quality: any, lang: any): Observable<any>;
|
|
936
|
+
generateTextFromView(items: any[]): Observable<any>;
|
|
937
|
+
generateImages(items: any[]): Observable<any>;
|
|
938
|
+
generateField(skuname: string, skuDescription: string, attributeName: string, styles: string[], maxSize: number, quality: number, lang: string): Observable<any>;
|
|
939
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OpenAiService, never>;
|
|
940
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OpenAiService>;
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
declare class ExchangesConfigurationsService {
|
|
944
|
+
private http;
|
|
945
|
+
private _settings;
|
|
946
|
+
constructor(http: HttpClient, _settings: SettingsService);
|
|
947
|
+
GetAllExchangesConfigurations(): Observable$1<any>;
|
|
948
|
+
GetAllAttributesByTypes(attributeType: any, attributeGroupType?: any): Observable$1<any>;
|
|
949
|
+
GetExchangeConfiguration(exchangeConfigurationGuid: string): Observable$1<any>;
|
|
950
|
+
GetMappingForRenaming(): Observable$1<any>;
|
|
951
|
+
GetSkusToBeRenamed(viewGuid: string, skusGuids: any, isVariant: boolean): Observable$1<Object>;
|
|
952
|
+
GetSkuRenamed(skuGuid: any, attributeGuid: string, fields: any, isVariant: boolean, substitue: string): Observable$1<Object>;
|
|
953
|
+
GetSkusRenamed(skusGuids: any, viewGuid: string, attributeGuid: string, fields: any, lang: string, isVariant: boolean, substitue: string): Observable$1<Object>;
|
|
954
|
+
ExportProcessAssetsRenaming(skusGuids: any, viewGuid: string, assetsGuids: any, configurationName: string, fields: any, mappingGuid: string, exchangeExtension: string, templateGuid: string, langs: any, isVariant: boolean): Observable$1<Object>;
|
|
955
|
+
AddExchangeConfiguration(exchangeConfigurationName: string, exchangeConfigurationContent: any, overwrite: boolean): Observable$1<Object>;
|
|
956
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExchangesConfigurationsService, never>;
|
|
957
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ExchangesConfigurationsService>;
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
declare class CompletenessService {
|
|
961
|
+
private http;
|
|
962
|
+
private _settingsService;
|
|
963
|
+
private auth;
|
|
964
|
+
constructor(http: HttpClient, _settingsService: SettingsService, auth: AuthService);
|
|
965
|
+
getCompletenessByGuid(guid: any): rxjs.Observable<Object>;
|
|
966
|
+
getAllCompleteness(completenessModule?: string): rxjs.Observable<Object>;
|
|
967
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CompletenessService, never>;
|
|
968
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CompletenessService>;
|
|
60
969
|
}
|
|
61
970
|
|
|
971
|
+
type AuthGroup = 'READ' | 'WRITE' | 'HIDDEN';
|
|
972
|
+
|
|
62
973
|
declare class ViewsService {
|
|
63
974
|
private http;
|
|
64
975
|
private _settingsService;
|
|
@@ -69,7 +980,7 @@ declare class ViewsService {
|
|
|
69
980
|
getSkusInView(viewGuid: string): rxjs.Observable<Object>;
|
|
70
981
|
getSkusVariantsInView(viewGuid: string, skuGuid: string): rxjs.Observable<Object>;
|
|
71
982
|
createViews(viewName: any, viewDescription: any, viewIcon: any, viewFields: any, viewFieldsVariants: any, ViewRules: any, viewRulesVariants: any, viewUsers: any, viewLanguage: any): rxjs.Observable<Object>;
|
|
72
|
-
updateViews(viewGuid:
|
|
983
|
+
updateViews(viewGuid: string, fieldName: any, fieldValue: any, userGuid?: any): rxjs.Observable<Object>;
|
|
73
984
|
deleteViews(viewGuid: string): rxjs.Observable<Object>;
|
|
74
985
|
static ɵfac: i0.ɵɵFactoryDeclaration<ViewsService, never>;
|
|
75
986
|
static ɵprov: i0.ɵɵInjectableDeclaration<ViewsService>;
|
|
@@ -80,7 +991,6 @@ declare class MenuService {
|
|
|
80
991
|
private http;
|
|
81
992
|
rights: RightsService;
|
|
82
993
|
private router;
|
|
83
|
-
private _settingsService;
|
|
84
994
|
private _view;
|
|
85
995
|
menuItems: Array<any>;
|
|
86
996
|
clientLabel: any;
|
|
@@ -127,6 +1037,7 @@ declare class MenuService {
|
|
|
127
1037
|
teamsLabel: any;
|
|
128
1038
|
accessLabel: any;
|
|
129
1039
|
profilLabel: any;
|
|
1040
|
+
companiesLabel: any;
|
|
130
1041
|
pricetaxeLabel: any;
|
|
131
1042
|
ecotaxpayerLabel: any;
|
|
132
1043
|
reportLabel: any;
|
|
@@ -145,6 +1056,7 @@ declare class MenuService {
|
|
|
145
1056
|
publicationExportLabel: any;
|
|
146
1057
|
publicationTemplatesLabel: any;
|
|
147
1058
|
publicationDocumentsLabel: any;
|
|
1059
|
+
publicationProductSheetsLabel: any;
|
|
148
1060
|
workFlowsLabel: any;
|
|
149
1061
|
workFlowsRoomLabel: any;
|
|
150
1062
|
rulesLabel: any;
|
|
@@ -162,7 +1074,7 @@ declare class MenuService {
|
|
|
162
1074
|
rightsAttributes: boolean;
|
|
163
1075
|
rightsExchanges: boolean;
|
|
164
1076
|
private subscriptionRights;
|
|
165
|
-
constructor(tr: TranslateService$1, http: HttpClient, rights: RightsService, router: Router,
|
|
1077
|
+
constructor(tr: TranslateService$1, http: HttpClient, rights: RightsService, router: Router, _view: ViewsService);
|
|
166
1078
|
getMenu(): any[];
|
|
167
1079
|
updateMenu(): void;
|
|
168
1080
|
addMenu(items: Array<{
|
|
@@ -179,6 +1091,7 @@ declare class MenuService {
|
|
|
179
1091
|
menuDashboard(): void;
|
|
180
1092
|
menuWorkflows(): void;
|
|
181
1093
|
menuProducts(): void;
|
|
1094
|
+
updateMenuProducts(): void;
|
|
182
1095
|
menuSales(): void;
|
|
183
1096
|
menuMedia(): void;
|
|
184
1097
|
menuPublication(): void;
|
|
@@ -190,7 +1103,7 @@ declare class MenuService {
|
|
|
190
1103
|
private defineMenuProducts;
|
|
191
1104
|
private defineMenuSales;
|
|
192
1105
|
private defineMenuMedia;
|
|
193
|
-
private
|
|
1106
|
+
private defineMenuPublications;
|
|
194
1107
|
private defineMenuChannels;
|
|
195
1108
|
private defineMenuBom;
|
|
196
1109
|
private getAndSetLabelsFromTranslateServiceForSalesMenu;
|
|
@@ -205,101 +1118,33 @@ declare class MenuService {
|
|
|
205
1118
|
static ɵprov: i0.ɵɵInjectableDeclaration<MenuService>;
|
|
206
1119
|
}
|
|
207
1120
|
|
|
208
|
-
declare class
|
|
209
|
-
private
|
|
210
|
-
|
|
211
|
-
constructor(
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
getConnections(start: string | number, limit: string | number, login: string, sort: string, direction: string): rxjs.Observable<Object>;
|
|
217
|
-
addConnection(login: any): rxjs.Observable<Object>;
|
|
218
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CompanyService, never>;
|
|
219
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<CompanyService>;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
declare class NotificationServiceService$1 {
|
|
223
|
-
private _settingsService;
|
|
224
|
-
private http;
|
|
225
|
-
private quantity;
|
|
226
|
-
private sidenav?;
|
|
227
|
-
constructor(_settingsService: SettingsService, http: HttpClient);
|
|
228
|
-
sendUpdate(message: number): void;
|
|
229
|
-
getUpdate(): Observable<any>;
|
|
230
|
-
getNotifications(start?: any, limit?: any): Observable<Object>;
|
|
231
|
-
markAllView(): Observable<Object>;
|
|
232
|
-
markasreaded(notificationGuid: string): Observable<Object>;
|
|
233
|
-
setSidenav(sidenav: MatSidenav): void;
|
|
234
|
-
open(): Promise<_angular_material_sidenav.MatDrawerToggleResult> | undefined;
|
|
235
|
-
close(): Promise<_angular_material_sidenav.MatDrawerToggleResult> | undefined;
|
|
236
|
-
toggle(): void;
|
|
237
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationServiceService$1, never>;
|
|
238
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationServiceService$1>;
|
|
1121
|
+
declare class RoleService {
|
|
1122
|
+
private authorizationDataService;
|
|
1123
|
+
permissions: Array<string>;
|
|
1124
|
+
constructor(authorizationDataService: AuthService);
|
|
1125
|
+
hasPermission(authGroup: AuthGroup): boolean;
|
|
1126
|
+
initializePermissions(): Promise<unknown>;
|
|
1127
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RoleService, never>;
|
|
1128
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RoleService>;
|
|
239
1129
|
}
|
|
240
1130
|
|
|
241
|
-
declare class
|
|
242
|
-
private
|
|
243
|
-
|
|
244
|
-
private
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
private userLogin;
|
|
250
|
-
informationMessage: any;
|
|
251
|
-
deliberateDisconnect: boolean;
|
|
252
|
-
room: any;
|
|
253
|
-
constructor(_settings: SettingsService, _router: Router, rights: RightsService, _notification: NotificationServiceService$1, ngZone: NgZone);
|
|
254
|
-
initConnection(): void;
|
|
255
|
-
connect(): void;
|
|
256
|
-
listeners(): void;
|
|
257
|
-
listenersOnClose(): void;
|
|
258
|
-
disconnect(): void;
|
|
259
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<websocketService, never>;
|
|
260
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<websocketService>;
|
|
1131
|
+
declare class RouterExtServiceService {
|
|
1132
|
+
private router;
|
|
1133
|
+
private previousUrl;
|
|
1134
|
+
private currentUrl;
|
|
1135
|
+
constructor(router: Router);
|
|
1136
|
+
getPreviousUrl(): string | null;
|
|
1137
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RouterExtServiceService, never>;
|
|
1138
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RouterExtServiceService>;
|
|
261
1139
|
}
|
|
262
1140
|
|
|
263
|
-
declare class
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
private modalService;
|
|
271
|
-
private tokenPotential;
|
|
272
|
-
private accountSetting;
|
|
273
|
-
private authenticateObjectWithRight;
|
|
274
|
-
closeModal: string;
|
|
275
|
-
constructor(myRoute: Router, http: HttpClient, _settingsService: SettingsService, _companies: CompanyService, dialog: MatDialog, _webSocket: websocketService, modalService: NgbModal);
|
|
276
|
-
getAccountSetting(): any;
|
|
277
|
-
setAccountSetting(accountSetting: any): void;
|
|
278
|
-
sendToken(token: string): void;
|
|
279
|
-
sendTokenIframe(token: string): void;
|
|
280
|
-
stockTokenForDoubleAuth(token: string): void;
|
|
281
|
-
getTokenPotential(): string;
|
|
282
|
-
logout(): void;
|
|
283
|
-
logoutWithoutToken(): void;
|
|
284
|
-
logoutServiceApi(): rxjs.Observable<Object>;
|
|
285
|
-
setRight(authenticateObjectWithRight: {
|
|
286
|
-
[x: string]: {};
|
|
287
|
-
}): void;
|
|
288
|
-
getRightFromApi(): rxjs.Observable<Object>;
|
|
289
|
-
getRighFromAngularService(rightName: string | number): any;
|
|
290
|
-
triggerModalMatDialog(content: TemplateRef<any>, viewContainerRef?: ViewContainerRef): Promise<any>;
|
|
291
|
-
closeAllModalMatDialog(): void;
|
|
292
|
-
triggerModal(content: any): Promise<any>;
|
|
293
|
-
closeAllModal(): void;
|
|
294
|
-
private getDismissReason;
|
|
295
|
-
isLoggedIn(): boolean;
|
|
296
|
-
getPermissions(): string;
|
|
297
|
-
checkErrorApiCall(error: {
|
|
298
|
-
status: number;
|
|
299
|
-
}): void;
|
|
300
|
-
delay(ms: number): Promise<unknown>;
|
|
301
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
|
|
302
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
|
|
1141
|
+
declare class UtilsService {
|
|
1142
|
+
static getInitialLogin(userLoginOrUser: any, firstName?: string, lastName?: string): string;
|
|
1143
|
+
static getColorLogin(userLoginOrUser: any): string;
|
|
1144
|
+
getColorLogin(userLogin: string): string;
|
|
1145
|
+
getTimeElapsed(startDate: Date, startTime: string): string;
|
|
1146
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UtilsService, never>;
|
|
1147
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UtilsService>;
|
|
303
1148
|
}
|
|
304
1149
|
|
|
305
1150
|
interface Company {
|
|
@@ -359,11 +1204,28 @@ declare class CompaniesService {
|
|
|
359
1204
|
static ɵprov: i0.ɵɵInjectableDeclaration<CompaniesService>;
|
|
360
1205
|
}
|
|
361
1206
|
|
|
1207
|
+
declare class ProfilesService {
|
|
1208
|
+
private http;
|
|
1209
|
+
private _settingsService;
|
|
1210
|
+
constructor(http: HttpClient, _settingsService: SettingsService);
|
|
1211
|
+
getAllProfils(): rxjs.Observable<Object>;
|
|
1212
|
+
getProfilesWithSort(sort: string, order: string): rxjs.Observable<Object>;
|
|
1213
|
+
getOneStatusByGuid(guid: string): rxjs.Observable<Object>;
|
|
1214
|
+
getAllModulesOfOneProfil(guid: string): rxjs.Observable<Object>;
|
|
1215
|
+
createProfile(nameObj: any, desc: string): rxjs.Observable<Object>;
|
|
1216
|
+
modifyProfile(guid: string, nameObj: any, desc: string): rxjs.Observable<Object>;
|
|
1217
|
+
modifyProfileModuleField(profilesObj: any): rxjs.Observable<Object>;
|
|
1218
|
+
modifyProfileFunctionField(profilesObj: any): rxjs.Observable<Object>;
|
|
1219
|
+
modifyProfileFunctionFieldByModuleGuid(profilesObj: any): rxjs.Observable<Object>;
|
|
1220
|
+
deleteProfiles(profilesObj: any): rxjs.Observable<Object>;
|
|
1221
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProfilesService, never>;
|
|
1222
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProfilesService>;
|
|
1223
|
+
}
|
|
1224
|
+
|
|
362
1225
|
declare class TeamsService {
|
|
363
1226
|
private http;
|
|
364
1227
|
private _settings;
|
|
365
|
-
|
|
366
|
-
constructor(http: HttpClient, _settings: SettingsService, auth: AuthService);
|
|
1228
|
+
constructor(http: HttpClient, _settings: SettingsService);
|
|
367
1229
|
getTeamsWithSort(col: any, order: any): rxjs.Observable<Object>;
|
|
368
1230
|
getAllTeams(): rxjs.Observable<Object>;
|
|
369
1231
|
createTeam(jsonName: any, isActive: any, users: any, jsonDesc: any, color: any): rxjs.Observable<Object>;
|
|
@@ -374,22 +1236,6 @@ declare class TeamsService {
|
|
|
374
1236
|
static ɵprov: i0.ɵɵInjectableDeclaration<TeamsService>;
|
|
375
1237
|
}
|
|
376
1238
|
|
|
377
|
-
declare class DamAssetsProfilesService {
|
|
378
|
-
private _settings;
|
|
379
|
-
private http;
|
|
380
|
-
private _webSocket;
|
|
381
|
-
constructor(_settings: SettingsService, http: HttpClient, _webSocket: websocketService);
|
|
382
|
-
getProfilesAssets(start: any, limit: any, search: string, language: string, direction: string): rxjs.Observable<Object>;
|
|
383
|
-
getProfileAssets(profileAssetGuid: string): rxjs.Observable<Object>;
|
|
384
|
-
createProfileAssets(profileAssetName: any, profileAssetExtension: any, profileAssetSizes: any): rxjs.Observable<Object>;
|
|
385
|
-
updateProfileAssets(profileAssetGuid: any, profileAssetName: any, profileAssetExtension: any, profileAssetSizes: any): rxjs.Observable<Object>;
|
|
386
|
-
updateProfileAsset(guid: any, fieldName: any, fieldValue: any): rxjs.Observable<Object>;
|
|
387
|
-
deleteProfilesAssets(listingProfilesAssetsToDelete: any): rxjs.Observable<Object>;
|
|
388
|
-
deleteProfileAsset(profileAssetGuid: string): rxjs.Observable<Object>;
|
|
389
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DamAssetsProfilesService, never>;
|
|
390
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<DamAssetsProfilesService>;
|
|
391
|
-
}
|
|
392
|
-
|
|
393
1239
|
declare class DamAssetsSelectionsService {
|
|
394
1240
|
private _settings;
|
|
395
1241
|
private http;
|
|
@@ -413,44 +1259,42 @@ declare class WorkflowsDesksService {
|
|
|
413
1259
|
private _webSocket;
|
|
414
1260
|
constructor(http: HttpClient, _settingsService: SettingsService, _webSocket: websocketService);
|
|
415
1261
|
replaceOldAssetByNewAsset(object: any): rxjs.Observable<Object>;
|
|
416
|
-
getAllDesks(start:
|
|
1262
|
+
getAllDesks(start: number, limit: number): rxjs.Observable<Object>;
|
|
417
1263
|
getDeskByGuid(workdeskGuid: string): rxjs.Observable<Object>;
|
|
418
1264
|
addDesk(object: any): rxjs.Observable<Object>;
|
|
419
1265
|
updateDeskByGuid(object: any): rxjs.Observable<Object>;
|
|
420
1266
|
updateFieldDeskByGuid(object: any): rxjs.Observable<Object>;
|
|
421
1267
|
deleteDeskByGuid(workdeskGuid: string): rxjs.Observable<Object>;
|
|
422
|
-
getAllUsersByDeskGuid(start:
|
|
1268
|
+
getAllUsersByDeskGuid(start: number, limit: number, workdeskGuid: string): rxjs.Observable<Object>;
|
|
423
1269
|
getUserByDeskGuid(workdeskGuid: string, userGuid: string): rxjs.Observable<Object>;
|
|
424
1270
|
addUserByDeskGuid(object: any): rxjs.Observable<Object>;
|
|
425
1271
|
updateUserByDeskGuid(object: any): rxjs.Observable<Object>;
|
|
426
1272
|
updateFieldUserByDeskGuid(object: any): rxjs.Observable<Object>;
|
|
427
1273
|
deleteUserByDeskGuid(workdeskGuid: string, userGuid: string): rxjs.Observable<Object>;
|
|
428
1274
|
deleteUsersByDeskGuid(object: any): rxjs.Observable<Object>;
|
|
429
|
-
getAllItemsByWorkItemGuid(start:
|
|
1275
|
+
getAllItemsByWorkItemGuid(start: number, limit: number, workdeskGuid: string, statuts: any, search: string): rxjs.Observable<Object>;
|
|
430
1276
|
getItemByWorkItemGuid(workItemGuid: string): rxjs.Observable<Object>;
|
|
431
1277
|
getItemByWorkItemBaseGuid(workItemBaseGuid: string): rxjs.Observable<Object>;
|
|
432
1278
|
getAllCompletenessFieldByWorkItem(workItemGuid: string, byUser?: boolean): rxjs.Observable<Object>;
|
|
433
1279
|
addItemByDeskGuid(object: any): rxjs.Observable<Object>;
|
|
434
1280
|
updateItemByDeskGuid(object: any): rxjs.Observable<Object>;
|
|
435
|
-
updateFieldItemByDeskGuid(object:
|
|
436
|
-
workitemGuid: string;
|
|
437
|
-
}): rxjs.Observable<Object>;
|
|
1281
|
+
updateFieldItemByDeskGuid(object: any): rxjs.Observable<Object>;
|
|
438
1282
|
deleteItemByDeskGuid(workItemGuid: string): rxjs.Observable<Object>;
|
|
439
1283
|
deleteItemsByDeskGuid(object: any): rxjs.Observable<Object>;
|
|
440
1284
|
deleteItemByWorkItemBaseGuid(workItemBaseGuid: string): rxjs.Observable<Object>;
|
|
441
|
-
readNotificationOnItem(guid:
|
|
1285
|
+
readNotificationOnItem(guid: string): rxjs.Observable<Object>;
|
|
442
1286
|
addStaffsToItems(object: any): rxjs.Observable<Object>;
|
|
443
1287
|
replaceStaffsToItems(object: any): rxjs.Observable<Object>;
|
|
444
1288
|
removeStaffsToItems(object: any): rxjs.Observable<Object>;
|
|
445
1289
|
getWorkflowsProgress(workitemBaseGuid: string): rxjs.Observable<Object>;
|
|
446
1290
|
sendMailWorkflows(object: any): rxjs.Observable<Object>;
|
|
447
|
-
getItemStepByWorkItemGuid(start:
|
|
1291
|
+
getItemStepByWorkItemGuid(start: number, limit: number, workItemGuid: string): rxjs.Observable<Object>;
|
|
448
1292
|
updateItemByWorkItemStepGuid(object: any, subject?: any): rxjs.Observable<Object>;
|
|
449
1293
|
updateDeskStepUserByWorkItemStepGuid(object: any): rxjs.Observable<Object>;
|
|
450
1294
|
addItemStepByDeskGuid(object: any): rxjs.Observable<Object>;
|
|
451
1295
|
deleteItemStepByWorkItemStepGuid(workitemGuid: string, workstepGuid: string): rxjs.Observable<Object>;
|
|
452
1296
|
getAllStepsByDeskGuid(workdeskGuid: string): rxjs.Observable<Object>;
|
|
453
|
-
getAllSteps(start:
|
|
1297
|
+
getAllSteps(start: number, limit: number, search: string, completenessGuid: string): rxjs.Observable<Object>;
|
|
454
1298
|
getStepByWorkStepGuid(workstepGuid: string): rxjs.Observable<Object>;
|
|
455
1299
|
addStep(object: any): rxjs.Observable<Object>;
|
|
456
1300
|
updateStepByWorkStepGuid(object: any): rxjs.Observable<Object>;
|
|
@@ -460,7 +1304,7 @@ declare class WorkflowsDesksService {
|
|
|
460
1304
|
checkItemStep(object: any): rxjs.Observable<Object>;
|
|
461
1305
|
checkItemStepUsers(object: any): rxjs.Observable<Object>;
|
|
462
1306
|
checkItemStepByWorkStepGuid(workstepGuid: string): rxjs.Observable<Object>;
|
|
463
|
-
getAllMessages(start:
|
|
1307
|
+
getAllMessages(start: number, limit: number, workchatTargetGuid: string): rxjs.Observable<Object>;
|
|
464
1308
|
makeNewMessage(object: any): rxjs.Observable<Object>;
|
|
465
1309
|
deleteMessageByWorkchatGuid(workchatGuid: string): rxjs.Observable<Object>;
|
|
466
1310
|
updateFieldChatByWorkchatGuid(object: any): rxjs.Observable<Object>;
|
|
@@ -469,19 +1313,27 @@ declare class WorkflowsDesksService {
|
|
|
469
1313
|
readTchatOnItem(object: any): rxjs.Observable<Object>;
|
|
470
1314
|
getAllRooms(): rxjs.Observable<Object>;
|
|
471
1315
|
getRoom(workroomGuid: string): rxjs.Observable<Object>;
|
|
472
|
-
addRoom(workroomName:
|
|
473
|
-
updateRoom(workroomGuid:
|
|
1316
|
+
addRoom(workroomName: string, workroomDesks: any, workroomSkus?: any[]): rxjs.Observable<Object>;
|
|
1317
|
+
updateRoom(workroomGuid: string, fieldName: string, fieldValue: any): rxjs.Observable<Object>;
|
|
474
1318
|
deleteRoom(workroomGuid: string): rxjs.Observable<Object>;
|
|
475
1319
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowsDesksService, never>;
|
|
476
1320
|
static ɵprov: i0.ɵɵInjectableDeclaration<WorkflowsDesksService>;
|
|
477
1321
|
}
|
|
478
1322
|
|
|
1323
|
+
declare class WorkflowsGlobalStepsService {
|
|
1324
|
+
private http;
|
|
1325
|
+
private _settingsService;
|
|
1326
|
+
constructor(http: HttpClient, _settingsService: SettingsService);
|
|
1327
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowsGlobalStepsService, never>;
|
|
1328
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WorkflowsGlobalStepsService>;
|
|
1329
|
+
}
|
|
1330
|
+
|
|
479
1331
|
declare class WorkflowsHistoricalService {
|
|
480
1332
|
private http;
|
|
481
1333
|
private _settingsService;
|
|
482
1334
|
private _webSocket;
|
|
483
1335
|
constructor(http: HttpClient, _settingsService: SettingsService, _webSocket: websocketService);
|
|
484
|
-
getAllHistorical(start:
|
|
1336
|
+
getAllHistorical(start: number, limit: number, search: string): rxjs.Observable<Object>;
|
|
485
1337
|
getOneHistoryByWorkitemarchivedGuid(workitemarchivedGuid: string): rxjs.Observable<Object>;
|
|
486
1338
|
archiveThisItem(object: any): rxjs.Observable<Object>;
|
|
487
1339
|
deleteByWorkitemarchivedGuids(object: any): rxjs.Observable<Object>;
|
|
@@ -489,6 +1341,25 @@ declare class WorkflowsHistoricalService {
|
|
|
489
1341
|
static ɵprov: i0.ɵɵInjectableDeclaration<WorkflowsHistoricalService>;
|
|
490
1342
|
}
|
|
491
1343
|
|
|
1344
|
+
declare class WorkflowsRulesService {
|
|
1345
|
+
private http;
|
|
1346
|
+
private _settingsService;
|
|
1347
|
+
private auth;
|
|
1348
|
+
constructor(http: HttpClient, _settingsService: SettingsService, auth: AuthService);
|
|
1349
|
+
getAllCompletenessRules(completenessModule?: string): rxjs.Observable<Object>;
|
|
1350
|
+
getAllMappingByType(type: string, attributesComponent?: boolean): rxjs.Observable<Object>;
|
|
1351
|
+
getAllAttributesByField(limit: number, start: number, field: any): rxjs.Observable<Object>;
|
|
1352
|
+
getAllChoicesByColumnName(columnName: string): rxjs.Observable<Object>;
|
|
1353
|
+
updateSubRule(object: any): rxjs.Observable<Object>;
|
|
1354
|
+
deleteSubRules(object: any): rxjs.Observable<Object>;
|
|
1355
|
+
addNewMainRule(object: any): rxjs.Observable<Object>;
|
|
1356
|
+
addNewSubRule(object: any): rxjs.Observable<Object>;
|
|
1357
|
+
deleteRuleByGuid(guid: string): rxjs.Observable<Object>;
|
|
1358
|
+
updateFieldRuleByRuleGuid(object: any): rxjs.Observable<Object>;
|
|
1359
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowsRulesService, never>;
|
|
1360
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WorkflowsRulesService>;
|
|
1361
|
+
}
|
|
1362
|
+
|
|
492
1363
|
interface Server {
|
|
493
1364
|
serverActive: boolean;
|
|
494
1365
|
serverCreationDate: string;
|
|
@@ -537,28 +1408,133 @@ interface UserSignInObject {
|
|
|
537
1408
|
client: Client;
|
|
538
1409
|
}
|
|
539
1410
|
|
|
540
|
-
declare class LoginService {
|
|
1411
|
+
declare class LoginService {
|
|
1412
|
+
private http;
|
|
1413
|
+
private settings;
|
|
1414
|
+
private router;
|
|
1415
|
+
private user;
|
|
1416
|
+
private company;
|
|
1417
|
+
constructor(http: HttpClient, settings: SettingsService, router: Router);
|
|
1418
|
+
setCompany(company: any): void;
|
|
1419
|
+
setUser(user: any): void;
|
|
1420
|
+
setLoginInLocalStorage(login: string): void;
|
|
1421
|
+
getCompany(): any;
|
|
1422
|
+
getUserNotFromApi(): {
|
|
1423
|
+
[x: string]: any;
|
|
1424
|
+
};
|
|
1425
|
+
getLoginFromUser(): any;
|
|
1426
|
+
checkConnectionAttemptAndDate(login: string, alias: any): rxjs.Observable<ConnectionAttemptObject>;
|
|
1427
|
+
getUser(login: any, mdp: any, alias: any): rxjs.Observable<UserSignInObject>;
|
|
1428
|
+
getLoginInLocalStorage(): string | null;
|
|
1429
|
+
externalLogin(team: any): rxjs.Observable<Object>;
|
|
1430
|
+
iframeLogin(login: any, mdp: any): rxjs.Observable<UserSignInObject>;
|
|
1431
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoginService, never>;
|
|
1432
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LoginService>;
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
declare class AuthTwoFactorService {
|
|
1436
|
+
private http;
|
|
1437
|
+
private settings;
|
|
1438
|
+
constructor(http: HttpClient, settings: SettingsService);
|
|
1439
|
+
notifyServToGenerateAndSendCode(login: string, alias: string): rxjs.Observable<Object>;
|
|
1440
|
+
checkCodeAttemptAndCodeInput(login: string, code: string, alias: string): rxjs.Observable<Object>;
|
|
1441
|
+
checkCodeAttempt(login: string, alias: string): rxjs.Observable<Object>;
|
|
1442
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthTwoFactorService, never>;
|
|
1443
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthTwoFactorService>;
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
declare class BatchService {
|
|
1447
|
+
private http;
|
|
1448
|
+
private _settings;
|
|
1449
|
+
constructor(http: HttpClient, _settings: SettingsService);
|
|
1450
|
+
getBatchs(): rxjs.Observable<Object>;
|
|
1451
|
+
executeBatch(exchangeBatchList: any): rxjs.Observable<Object>;
|
|
1452
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BatchService, never>;
|
|
1453
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BatchService>;
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
declare class ReportsService {
|
|
1457
|
+
private http;
|
|
1458
|
+
private _settings;
|
|
1459
|
+
constructor(http: HttpClient, _settings: SettingsService);
|
|
1460
|
+
getAllExchangesReport(type: string, start: number, limit: number): rxjs.Observable<Object>;
|
|
1461
|
+
getOneExchangesReportByGuid(guid: string): rxjs.Observable<Object>;
|
|
1462
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReportsService, never>;
|
|
1463
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ReportsService>;
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1466
|
+
declare class MappingsService {
|
|
1467
|
+
private http;
|
|
1468
|
+
private _settings;
|
|
1469
|
+
constructor(http: HttpClient, _settings: SettingsService);
|
|
1470
|
+
getMappings(): rxjs.Observable<Object>;
|
|
1471
|
+
getMappingsWithParam(searchWord: string, limit: number, start: number, columnSort: string, direction: string): rxjs.Observable<Object>;
|
|
1472
|
+
getMappingsWithParamWithoutOrderDirection(searchWord: string, limit: number, start: number): rxjs.Observable<Object>;
|
|
1473
|
+
getMappingById(exchangeMappingGuid: string): rxjs.Observable<Object>;
|
|
1474
|
+
getFieldForMapping(): rxjs.Observable<Object>;
|
|
1475
|
+
getMappingDefault(): rxjs.Observable<Object>;
|
|
1476
|
+
createFieldMapping(mappingName: string): rxjs.Observable<Object>;
|
|
1477
|
+
copyMapping(exchangeMappingGuidSource: string, exchangeMappingGuidTarget: string): rxjs.Observable<Object>;
|
|
1478
|
+
updateFieldsMapping(exchangeMappingGuid: string, fieldValue: any): rxjs.Observable<Object>;
|
|
1479
|
+
updateFieldMapping(fieldName: string, fieldValue: any[], exchangeMappingGuid: string): rxjs.Observable<Object>;
|
|
1480
|
+
updateMapping(exchangeMappingGuid: string, exchangeMappingName: string, exchangeMappingUsersAvailable: Array<{}>, exchangeMappingUsersDefault: Array<{}>): rxjs.Observable<Object>;
|
|
1481
|
+
deleteMappings(tabGuid: Array<{}>): rxjs.Observable<Object>;
|
|
1482
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MappingsService, never>;
|
|
1483
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MappingsService>;
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
declare class ExportsService {
|
|
1487
|
+
private http;
|
|
1488
|
+
private _settings;
|
|
1489
|
+
constructor(http: HttpClient, _settings: SettingsService);
|
|
1490
|
+
exportDownload(exchangeObject: any): rxjs.Observable<Object>;
|
|
1491
|
+
exportDownloadCate(exchangeObject: any): rxjs.Observable<Object>;
|
|
1492
|
+
exportDownloadMultiCate(exchangeObject: any): rxjs.Observable<Object>;
|
|
1493
|
+
exportDownloadSupplier(exchangeObject: any): rxjs.Observable<Object>;
|
|
1494
|
+
exportDownloadOrdersItems(exchangeObject: any): rxjs.Observable<Object>;
|
|
1495
|
+
exportDownloadOrders(exchangeObject: any): rxjs.Observable<Object>;
|
|
1496
|
+
exportDownloadQuotes(exchangeObject: any): rxjs.Observable<Object>;
|
|
1497
|
+
exportDownloadQuotesItems(exchangeObject: any): rxjs.Observable<Object>;
|
|
1498
|
+
exportDownloadAccount(exchangeObject: any): rxjs.Observable<Object>;
|
|
1499
|
+
exportDownloadShipping(exchangeObject: any): rxjs.Observable<Object>;
|
|
1500
|
+
exportSkuWithFilter(exchangeObject: any): rxjs.Observable<Object>;
|
|
1501
|
+
exportDownloadFrameworkAgreements(exchangeObject: any): rxjs.Observable<Object>;
|
|
1502
|
+
exportDownloadPriceNegociated(exchangeObject: any): rxjs.Observable<Object>;
|
|
1503
|
+
exportDownloadPublications(exchangeObject: any): rxjs.Observable<Object>;
|
|
1504
|
+
exportDownloadAssets(exchangeObject: any): rxjs.Observable<Object>;
|
|
1505
|
+
exportDownloadMissingAssets(exchangeObject: any): rxjs.Observable<Object>;
|
|
1506
|
+
exportDownloadOrphansAssets(exchangeObject: any): rxjs.Observable<Object>;
|
|
1507
|
+
exportPersonalized(exchangeObject: any): rxjs.Observable<Object>;
|
|
1508
|
+
exportEasyCatalog(exchangeObject: any): rxjs.Observable<Object>;
|
|
1509
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExportsService, never>;
|
|
1510
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ExportsService>;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
declare class ImportsService {
|
|
541
1514
|
private http;
|
|
542
|
-
private
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
1515
|
+
private _settings;
|
|
1516
|
+
constructor(http: HttpClient, _settings: SettingsService);
|
|
1517
|
+
importMapping(objImport: any): rxjs.Observable<Object>;
|
|
1518
|
+
importMappingCategory(type: any, separa: any): rxjs.Observable<Object>;
|
|
1519
|
+
importMappingPrice(source: any, mode: any, separa: any, skippedSkus: any, isPricesCents: any): rxjs.Observable<Object>;
|
|
1520
|
+
importMappingStock(source: any, mode: any, separa: any, skippedSkus: any): rxjs.Observable<Object>;
|
|
1521
|
+
importAttributes(source: any, exchange: any): rxjs.Observable<Object>;
|
|
1522
|
+
importOrders(type: any, mode: any): rxjs.Observable<Object>;
|
|
1523
|
+
importQuotes(type: any, mode: any): rxjs.Observable<Object>;
|
|
1524
|
+
importMappingOrdersItems(type: any, mode: any): rxjs.Observable<Object>;
|
|
1525
|
+
importMappingQuotesItems(type: any, mode: any): rxjs.Observable<Object>;
|
|
1526
|
+
importMappingFramework(type: any, mode: any, separa: any): rxjs.Observable<Object>;
|
|
1527
|
+
importMappingAccountSkuPrice(type: any, mode: any, separa: any): rxjs.Observable<Object>;
|
|
1528
|
+
importMappingMultiCategory(type: any, separa: any, mode: any): rxjs.Observable<Object>;
|
|
1529
|
+
importMappingSupplier(type: any, separa: any, mode: any): rxjs.Observable<Object>;
|
|
1530
|
+
importMappingAccount(type: any, separa: any, mode: any): rxjs.Observable<Object>;
|
|
1531
|
+
importMappingShipping(type: any, separa: any, mode: any): rxjs.Observable<Object>;
|
|
1532
|
+
importMappingAsset(type: any, separa: any): rxjs.Observable<Object>;
|
|
1533
|
+
importMappingPublications(type: any, mode: any, separa: any): rxjs.Observable<Object>;
|
|
1534
|
+
getFieldMapping(): rxjs.Observable<Object>;
|
|
1535
|
+
getFieldsForMapping(): rxjs.Observable<Object>;
|
|
1536
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImportsService, never>;
|
|
1537
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ImportsService>;
|
|
562
1538
|
}
|
|
563
1539
|
|
|
564
1540
|
declare class SidebarRightService {
|
|
@@ -573,23 +1549,12 @@ declare class SidebarRightService {
|
|
|
573
1549
|
static ɵprov: i0.ɵɵInjectableDeclaration<SidebarRightService>;
|
|
574
1550
|
}
|
|
575
1551
|
|
|
576
|
-
declare class CompletenessService {
|
|
577
|
-
private http;
|
|
578
|
-
private _settingsService;
|
|
579
|
-
private auth;
|
|
580
|
-
constructor(http: HttpClient, _settingsService: SettingsService, auth: AuthService);
|
|
581
|
-
getCompletenessByGuid(guid: any): rxjs.Observable<Object>;
|
|
582
|
-
getAllCompleteness(completenessModule?: string): rxjs.Observable<Object>;
|
|
583
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CompletenessService, never>;
|
|
584
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<CompletenessService>;
|
|
585
|
-
}
|
|
586
|
-
|
|
587
1552
|
declare class StatusService {
|
|
588
1553
|
private http;
|
|
589
1554
|
private _settingsService;
|
|
590
1555
|
private auth;
|
|
591
1556
|
constructor(http: HttpClient, _settingsService: SettingsService, auth: AuthService);
|
|
592
|
-
getAllStatus(type:
|
|
1557
|
+
getAllStatus(type: any): rxjs.Observable<Object>;
|
|
593
1558
|
getOneStatusByGuid(guid: string): rxjs.Observable<Object>;
|
|
594
1559
|
getStatusSort(): rxjs.Observable<Object>;
|
|
595
1560
|
createStatus(object: any): rxjs.Observable<Object>;
|
|
@@ -599,127 +1564,116 @@ declare class StatusService {
|
|
|
599
1564
|
static ɵprov: i0.ɵɵInjectableDeclaration<StatusService>;
|
|
600
1565
|
}
|
|
601
1566
|
|
|
602
|
-
|
|
1567
|
+
interface MaskName {
|
|
1568
|
+
fr: string;
|
|
1569
|
+
}
|
|
1570
|
+
interface Mask {
|
|
1571
|
+
maskGuid: string;
|
|
1572
|
+
maskName: MaskName;
|
|
1573
|
+
maskNote: string;
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1576
|
+
interface AttributesGroup {
|
|
1577
|
+
attributesGroupGuid: String;
|
|
1578
|
+
attributesgroupname: Object;
|
|
1579
|
+
attributesgrouptype: Number;
|
|
1580
|
+
attributesgrouporder: Number;
|
|
1581
|
+
attributesgroupistranslate: Boolean;
|
|
1582
|
+
attributesgroupnote: String;
|
|
1583
|
+
attributesGroupIsSystem: Boolean;
|
|
1584
|
+
}
|
|
1585
|
+
interface AttributeObject {
|
|
1586
|
+
attributeguid: String;
|
|
1587
|
+
attributeName: Object;
|
|
1588
|
+
attributesGroupGuid: String;
|
|
1589
|
+
attributeType: String;
|
|
1590
|
+
attributeIsActive: Boolean;
|
|
1591
|
+
attributeIsFront: Boolean;
|
|
1592
|
+
attributeIsTrashbin: Boolean;
|
|
1593
|
+
attributeIsReadonly: Boolean;
|
|
1594
|
+
attributeIsMandatory: Boolean;
|
|
1595
|
+
attributeIsUnique: Boolean;
|
|
1596
|
+
attributeIsTranslate: Boolean;
|
|
1597
|
+
attributeOrder: Number;
|
|
1598
|
+
attributeNote: String;
|
|
1599
|
+
attributeInitialValue: Object;
|
|
1600
|
+
attributeMinValue: String;
|
|
1601
|
+
attributeMaxValue: String;
|
|
1602
|
+
attributeMaxNumberDigits: String;
|
|
1603
|
+
attributeDecimalPoints: String;
|
|
1604
|
+
attributeMaxCharacters: String;
|
|
1605
|
+
attributeOptions: Object;
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
declare class MasksService {
|
|
603
1609
|
private http;
|
|
604
1610
|
private _settings;
|
|
605
1611
|
constructor(http: HttpClient, _settings: SettingsService);
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
exchangeMappingGuid: any;
|
|
672
|
-
exchangeLanguage: any;
|
|
673
|
-
exchangeExtensionOutputFile: any;
|
|
674
|
-
exchangeSeparator: any;
|
|
675
|
-
channelGuid: any;
|
|
676
|
-
exchangeOrder: any;
|
|
677
|
-
exchangeFilter: any;
|
|
678
|
-
}): rxjs.Observable<Object>;
|
|
679
|
-
exportDownloadFrameworkAgreements(exchangeObject: {
|
|
680
|
-
languageSelected: any;
|
|
681
|
-
exchangeExtensionOutputFile: any;
|
|
682
|
-
exchangeSeparator: any;
|
|
683
|
-
}): rxjs.Observable<Object>;
|
|
684
|
-
exportDownloadPriceNegociated(exchangeObject: {
|
|
685
|
-
languageSelected: any;
|
|
686
|
-
exchangeExtensionOutputFile: any;
|
|
687
|
-
exchangeSeparator: any;
|
|
688
|
-
}): rxjs.Observable<Object>;
|
|
689
|
-
exportDownloadPublications(exchangeObject: {
|
|
690
|
-
exchangeExtensionOutputFile: any;
|
|
691
|
-
exchangeSeparator: any;
|
|
692
|
-
exchangeOrder: any;
|
|
693
|
-
exchangeFilter: any;
|
|
694
|
-
}): rxjs.Observable<Object>;
|
|
695
|
-
exportDownloadAssets(exchangeObject: {
|
|
696
|
-
languageSelected: any;
|
|
697
|
-
exchangeExtensionOutputFile: any;
|
|
698
|
-
exchangeSeparator: any;
|
|
699
|
-
exchangeOrder: any;
|
|
700
|
-
}): rxjs.Observable<Object>;
|
|
701
|
-
exportDownloadMissingAssets(exchangeObject: {
|
|
702
|
-
languageSelected: any;
|
|
703
|
-
exchangeExtensionOutputFile: any;
|
|
704
|
-
exchangeSeparator: any;
|
|
705
|
-
exchangeOrder: any;
|
|
706
|
-
}): rxjs.Observable<Object>;
|
|
707
|
-
exportDownloadOrphansAssets(exchangeObject: {
|
|
708
|
-
languageSelected: any;
|
|
709
|
-
exchangeExtensionOutputFile: any;
|
|
710
|
-
exchangeSeparator: any;
|
|
711
|
-
exchangeOrder: any;
|
|
712
|
-
}): rxjs.Observable<Object>;
|
|
713
|
-
exportPersonalized(exchangeObject: {
|
|
714
|
-
exchangeLanguage: any;
|
|
715
|
-
templateGuid: any;
|
|
716
|
-
pricesListGuid: any;
|
|
717
|
-
channelGuid: any;
|
|
718
|
-
skuGuids: any;
|
|
719
|
-
publicationId: any;
|
|
720
|
-
}): rxjs.Observable<Object>;
|
|
721
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ExportsService, never>;
|
|
722
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ExportsService>;
|
|
1612
|
+
withoutMaskByMaskGuidAndAttributesGroupGuid(maskGuid: string, attributesGroupGuid: string, maskAttributeIsVariant?: boolean): rxjs.Observable<AttributeObject[]>;
|
|
1613
|
+
withoutMaskByGroupGuid(attributesGroupGuid: string): rxjs.Observable<AttributeObject[]>;
|
|
1614
|
+
withoutMask(attributesGroupType: string): rxjs.Observable<AttributeObject[]>;
|
|
1615
|
+
getAttributesByMaskGuid(maskGuid: string, maskAttributeIsVariant?: boolean): rxjs.Observable<AttributeObject[]>;
|
|
1616
|
+
getAttributesInThisMaskOrderByGroup(maskGuid: string): rxjs.Observable<AttributeObject[]>;
|
|
1617
|
+
getAttributesByMaskWithAttributeGroupTypeAndWithoutAttributesGroupGuid(maskGuid: string, attributesGroupType: string): rxjs.Observable<AttributeObject[]>;
|
|
1618
|
+
getAttributesByMaskWithAttributeGroupTypeAndAttributesGroupGuid(maskGuid: string, attributesGroupType: string, attributesGroupGuid: string): rxjs.Observable<AttributeObject[]>;
|
|
1619
|
+
getAllMasks(): rxjs.Observable<Mask[]>;
|
|
1620
|
+
getOneMask(maskGuid: string): rxjs.Observable<Mask[]>;
|
|
1621
|
+
getMasksByAttributeGuid(attributeGuid: string, maskAttributeIsVariant?: boolean): rxjs.Observable<any>;
|
|
1622
|
+
createMask(maskName: any, maskNote: string, maskIsTranslate: boolean): rxjs.Observable<Object>;
|
|
1623
|
+
addToMask(maskGuid: string, attributes: any, maskAttributeIsVariant?: boolean): rxjs.Observable<Object>;
|
|
1624
|
+
updateMask(maskGuid: string, maskNameObject: any, maskNote: string, maskIsTranslate: boolean): rxjs.Observable<Object>;
|
|
1625
|
+
updateMasksByAttributeGuid(attributeGuid: string, maskGuids: string[], maskAttributeIsVariant?: boolean): rxjs.Observable<Object>;
|
|
1626
|
+
deleteOneMask(maskGuid: string): rxjs.Observable<Object>;
|
|
1627
|
+
removeToMask(maskGuid: string, attributes: any, maskAttributeIsVariant?: boolean): rxjs.Observable<Object>;
|
|
1628
|
+
updateToMask(maskGuid: string, attributeGuid: string, field: string, fieldValue: any, maskAttributeIsVariant: boolean): rxjs.Observable<Object>;
|
|
1629
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MasksService, never>;
|
|
1630
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MasksService>;
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
declare class RulesCompletenessService {
|
|
1634
|
+
private http;
|
|
1635
|
+
private _settingsService;
|
|
1636
|
+
private auth;
|
|
1637
|
+
constructor(http: HttpClient, _settingsService: SettingsService, auth: AuthService);
|
|
1638
|
+
getAllCompletenessRules(completenessModule?: string): rxjs.Observable<Object>;
|
|
1639
|
+
getAllMappingByType(type: string): rxjs.Observable<Object>;
|
|
1640
|
+
getAllAttributesByField(limit: number, start: number, field: string): rxjs.Observable<Object>;
|
|
1641
|
+
getAllChoicesByColumnName(columnName: string): rxjs.Observable<Object>;
|
|
1642
|
+
updateSubRule(object: any): rxjs.Observable<Object>;
|
|
1643
|
+
deleteSubRules(object: any): rxjs.Observable<Object>;
|
|
1644
|
+
addNewMainRule(object: any): rxjs.Observable<Object>;
|
|
1645
|
+
addNewSubRule(object: any): rxjs.Observable<Object>;
|
|
1646
|
+
deleteRuleByGuid(guid: string): rxjs.Observable<Object>;
|
|
1647
|
+
updateFieldRuleByRuleGuid(object: any): rxjs.Observable<Object>;
|
|
1648
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RulesCompletenessService, never>;
|
|
1649
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RulesCompletenessService>;
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
declare class EcoTaxService {
|
|
1653
|
+
private http;
|
|
1654
|
+
private settings;
|
|
1655
|
+
private router;
|
|
1656
|
+
constructor(http: HttpClient, settings: SettingsService, router: Router);
|
|
1657
|
+
importEcotaxpayer(ecoContributionObject: any): rxjs.Observable<Object>;
|
|
1658
|
+
getLanguageAvailable(): rxjs.Observable<Object>;
|
|
1659
|
+
getAllEcotaxpayer(): rxjs.Observable<Object>;
|
|
1660
|
+
getOneEcotaxpayer(ecocontributionGuid: string): rxjs.Observable<Object>;
|
|
1661
|
+
createEcotaxpayer(ecoContributionObject: any): rxjs.Observable<Object>;
|
|
1662
|
+
updateEcotaxpayerField(ecoContributionObject: any): rxjs.Observable<Object>;
|
|
1663
|
+
updateEcotaxpayer(ecoContributionObject: any): rxjs.Observable<Object>;
|
|
1664
|
+
deleteOneEcotaxpayer(ecoContributionCode: string): rxjs.Observable<Object>;
|
|
1665
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EcoTaxService, never>;
|
|
1666
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EcoTaxService>;
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
declare class InformationsService {
|
|
1670
|
+
private http;
|
|
1671
|
+
private settings;
|
|
1672
|
+
private router;
|
|
1673
|
+
constructor(http: HttpClient, settings: SettingsService, router: Router);
|
|
1674
|
+
getCreditAmount(): rxjs.Observable<Object>;
|
|
1675
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InformationsService, never>;
|
|
1676
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<InformationsService>;
|
|
723
1677
|
}
|
|
724
1678
|
|
|
725
1679
|
declare class LocaleNumberPipe implements PipeTransform {
|
|
@@ -781,35 +1735,175 @@ declare class EasypiechartDirective implements OnInit, OnChanges {
|
|
|
781
1735
|
static ɵdir: i0.ɵɵDirectiveDeclaration<EasypiechartDirective, "[easypiechart]", never, { "percent": { "alias": "percent"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, true, never>;
|
|
782
1736
|
}
|
|
783
1737
|
|
|
1738
|
+
interface CategoryObject {
|
|
1739
|
+
categoryGuid: number;
|
|
1740
|
+
}
|
|
1741
|
+
|
|
784
1742
|
declare class CategoriesService {
|
|
785
|
-
private auth;
|
|
786
1743
|
private _settingsService;
|
|
787
1744
|
private http;
|
|
788
1745
|
private _webSocket;
|
|
789
|
-
constructor(
|
|
1746
|
+
constructor(_settingsService: SettingsService, http: HttpClient, _webSocket: websocketService);
|
|
790
1747
|
getClassification(): rxjs.Observable<Object>;
|
|
791
1748
|
getClassificationByGuid(guid: string): rxjs.Observable<Object>;
|
|
792
|
-
getClassificationTreeByParent(parentGuid: string
|
|
1749
|
+
getClassificationTreeByParent(parentGuid: string): rxjs.Observable<Object>;
|
|
793
1750
|
getClassificationLevelOne(): rxjs.Observable<Object>;
|
|
794
1751
|
getClassificationByLevel(parentGuid: string): rxjs.Observable<Object>;
|
|
795
1752
|
getOrder(idItem: string): rxjs.Observable<Object>;
|
|
796
|
-
createClassification(exCode:
|
|
797
|
-
updateCategoryField(categoryGuid:
|
|
798
|
-
updateCategoryFieldAttribute(categoryGuid:
|
|
799
|
-
changeTree(idItem:
|
|
800
|
-
modifyClassification(exCode:
|
|
801
|
-
changeOrder(categoryGuid:
|
|
1753
|
+
createClassification(exCode: string, name: any, owner: string, team: string, attributes: any, descendant: string): rxjs.Observable<Object>;
|
|
1754
|
+
updateCategoryField(categoryGuid: string, fieldName: string, fieldValue: any): rxjs.Observable<Object>;
|
|
1755
|
+
updateCategoryFieldAttribute(categoryGuid: string, fieldName: string, fieldValue: any, attribute: any, language: string): rxjs.Observable<Object>;
|
|
1756
|
+
changeTree(idItem: Number, idDestination: Number, categoryNewOrder: number): rxjs.Observable<Object>;
|
|
1757
|
+
modifyClassification(exCode: string, name: string, owner: string, team: string, attributes: any, id: string, description: any, metaTitle: any, metaDescription: any, metaKeywords: any): rxjs.Observable<Object>;
|
|
1758
|
+
changeOrder(categoryGuid: string, categoryOrder: number): rxjs.Observable<Object>;
|
|
802
1759
|
deleteClassification(id: string): rxjs.Observable<Object>;
|
|
1760
|
+
deleteUnusedCategories(): rxjs.Observable<Object>;
|
|
803
1761
|
static ɵfac: i0.ɵɵFactoryDeclaration<CategoriesService, never>;
|
|
804
1762
|
static ɵprov: i0.ɵɵInjectableDeclaration<CategoriesService>;
|
|
805
1763
|
}
|
|
806
1764
|
|
|
807
|
-
|
|
1765
|
+
interface Supplier {
|
|
1766
|
+
supplierGuid: string;
|
|
1767
|
+
supplierRef: string;
|
|
1768
|
+
supplierCompanyName: string;
|
|
1769
|
+
supplierContactName: string;
|
|
1770
|
+
supplierEmail: string;
|
|
1771
|
+
supplierAddress: string;
|
|
1772
|
+
supplierAddress2: string;
|
|
1773
|
+
supplierAddress3: string;
|
|
1774
|
+
supplierPostalCode: string;
|
|
1775
|
+
supplierCity: string;
|
|
1776
|
+
supplierCountry: string;
|
|
1777
|
+
supplierPhone: string;
|
|
1778
|
+
supplierMobilePhone: string;
|
|
1779
|
+
supplierLogin: string;
|
|
1780
|
+
supplierPassword: string;
|
|
1781
|
+
supplierAttributes: string;
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
declare class SuppliersService {
|
|
1785
|
+
private http;
|
|
1786
|
+
private _settingsService;
|
|
1787
|
+
private _webSocket;
|
|
1788
|
+
constructor(http: HttpClient, _settingsService: SettingsService, _webSocket: websocketService);
|
|
1789
|
+
getAllSuppliers(): rxjs.Observable<Supplier[]>;
|
|
1790
|
+
getAllSupplierWithSearchLimitStartSortDirection(search: string, limit: number, start: number, sort: string, direction: string): rxjs.Observable<Supplier[]>;
|
|
1791
|
+
getAllSupplierWithSearchLimitStart(search: string, limit: number, start: number): rxjs.Observable<Supplier[]>;
|
|
1792
|
+
getSupplierById(supplierGuid: string): rxjs.Observable<Supplier>;
|
|
1793
|
+
createSupplier(supplierObj: any): rxjs.Observable<Object>;
|
|
1794
|
+
changeSupplierRef(oldSupplierRef: string, newSupplierRef: string): rxjs.Observable<Object>;
|
|
1795
|
+
updateSupplierField(supplierGuid: string, fieldName: string, fieldValue: any, attribute: any, language: string): rxjs.Observable<Object>;
|
|
1796
|
+
updateSupplier(supplierObj: any): rxjs.Observable<Object>;
|
|
1797
|
+
deleteSupplierByListOfId(tabIdSupplier: string[]): rxjs.Observable<Object>;
|
|
1798
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SuppliersService, never>;
|
|
1799
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SuppliersService>;
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
declare class StocksService {
|
|
808
1803
|
private http;
|
|
809
1804
|
private _settingsService;
|
|
810
1805
|
private auth;
|
|
811
1806
|
private _webSocket;
|
|
812
1807
|
constructor(http: HttpClient, _settingsService: SettingsService, auth: AuthService, _webSocket: websocketService);
|
|
1808
|
+
updateStockByField(stockGuid: string, fieldName: any, fieldValue: any): rxjs.Observable<Object>;
|
|
1809
|
+
getAllStocks(): rxjs.Observable<Object>;
|
|
1810
|
+
getStocksBySkuGuid(skuGuid: string): rxjs.Observable<Object>;
|
|
1811
|
+
createStock(stockObj: any): rxjs.Observable<Object>;
|
|
1812
|
+
updateStock(stockObj: any): rxjs.Observable<Object>;
|
|
1813
|
+
deleteStockByListStockGuid(listStockGuid: string[]): rxjs.Observable<Object>;
|
|
1814
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StocksService, never>;
|
|
1815
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StocksService>;
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
declare class SkusDeclinaisonsService {
|
|
1819
|
+
private http;
|
|
1820
|
+
private _settingsService;
|
|
1821
|
+
private _webSocket;
|
|
1822
|
+
private isDisplayPrices;
|
|
1823
|
+
constructor(http: HttpClient, _settingsService: SettingsService, _webSocket: websocketService);
|
|
1824
|
+
sendUpdateIsDisplayPrices(message: boolean): void;
|
|
1825
|
+
getUpdateIsDisplayPrices(): Observable<any>;
|
|
1826
|
+
getHasDeclinaisons(skuGuid: string, archive?: boolean): Observable<Object>;
|
|
1827
|
+
getDeclinaiseons(skuGuid: string, archive?: boolean, start?: number, limit?: number): Observable<Object>;
|
|
1828
|
+
getDeclinaiseonsBySku(sku: string, archive?: boolean): Observable<Object>;
|
|
1829
|
+
getAttribDec(skuGuid: string, archive?: boolean): Observable<Object>;
|
|
1830
|
+
addDeclinaison(guid: string, skuName: any, obj: any, archive?: boolean): Observable<Object>;
|
|
1831
|
+
getConfig(skuGuid: string, maskAttributeIsVariant?: string, archive?: boolean): Observable<Object>;
|
|
1832
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkusDeclinaisonsService, never>;
|
|
1833
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SkusDeclinaisonsService>;
|
|
1834
|
+
}
|
|
1835
|
+
|
|
1836
|
+
declare class SkusPricesService {
|
|
1837
|
+
private http;
|
|
1838
|
+
private _settingsService;
|
|
1839
|
+
private _webSocket;
|
|
1840
|
+
constructor(http: HttpClient, _settingsService: SettingsService, _webSocket: websocketService);
|
|
1841
|
+
getAllSkusPrices(skuGuid: string): rxjs.Observable<Object>;
|
|
1842
|
+
getEcoContribution(): void;
|
|
1843
|
+
getAllStock(skuGuid: string): rxjs.Observable<Object>;
|
|
1844
|
+
addStock(guid: string, centre: string, stock: number, recomm: number): rxjs.Observable<Object>;
|
|
1845
|
+
getAllSkusSuppliersBySkuGuidWithSortAndDirection(skuGuid: string, sort: string, direction: string, archive?: boolean): rxjs.Observable<Object>;
|
|
1846
|
+
updatePriceByFields(skuGuid: string, fieldName: any, newValue: any, priceListGuid: any, priceFromQuantity: any, priceGuid: any): rxjs.Observable<Object>;
|
|
1847
|
+
assignSuppliersToSku(skuGuid: string, supplierGuid: any, relationSkuSupplierBuyingPrice: any, relationSkuSupplierDeadline: any, relationSkuSupplierSku: any, archive?: boolean): rxjs.Observable<Object>;
|
|
1848
|
+
updateQuantity(oldField: any, newField: any, skuGuid: any): rxjs.Observable<Object>;
|
|
1849
|
+
updatePriceByField(priceGuid: any, fieldName: any, fieldValue: any): rxjs.Observable<Object>;
|
|
1850
|
+
createSkusPrice(price: any): rxjs.Observable<Object>;
|
|
1851
|
+
getTva(): rxjs.Observable<Object>;
|
|
1852
|
+
updateSkusPrice(price: any): rxjs.Observable<Object>;
|
|
1853
|
+
addNewPrice(object: any): rxjs.Observable<Object>;
|
|
1854
|
+
getPriceByPriceGuid(priceGuid: any): rxjs.Observable<Object>;
|
|
1855
|
+
deleteListOfPrice(listingPricesGuid: any): rxjs.Observable<Object>;
|
|
1856
|
+
deletePrice(quantity: any, guid: any): rxjs.Observable<Object>;
|
|
1857
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkusPricesService, never>;
|
|
1858
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SkusPricesService>;
|
|
1859
|
+
}
|
|
1860
|
+
|
|
1861
|
+
declare class SkusSuppliersService {
|
|
1862
|
+
private http;
|
|
1863
|
+
private _settingsService;
|
|
1864
|
+
private _webSocket;
|
|
1865
|
+
constructor(http: HttpClient, _settingsService: SettingsService, _webSocket: websocketService);
|
|
1866
|
+
getAllSkusSuppliersBySkuGuidWithSortAndDirection(skuGuid: string, sort: string, direction: string, archive?: boolean): rxjs.Observable<Object>;
|
|
1867
|
+
removeSkuSuppliersByListingSupplierGuid(skuGuid: string, listingSupplierGuidToRemove: any, archive?: boolean): rxjs.Observable<Object>;
|
|
1868
|
+
assignSuppliersToSku(skuGuid: string, supplierGuid: any, relationSkuSupplierBuyingPrice: any, relationSkuSupplierDeadline: any, relationSkuSupplierSku: any, archive?: boolean): rxjs.Observable<Object>;
|
|
1869
|
+
updateSkuSuppliersByField(skuGuid: string, supplierGuid: any, fieldName: string, fieldValue: any, archive?: boolean): rxjs.Observable<Object>;
|
|
1870
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkusSuppliersService, never>;
|
|
1871
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SkusSuppliersService>;
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
declare class SkusTrackingService {
|
|
1875
|
+
private http;
|
|
1876
|
+
private _settingsService;
|
|
1877
|
+
private auth;
|
|
1878
|
+
constructor(http: HttpClient, _settingsService: SettingsService, auth: AuthService);
|
|
1879
|
+
getAllTracking(trackingType: any, trackingExternalGuid: string, lang: any): rxjs.Observable<Object>;
|
|
1880
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkusTrackingService, never>;
|
|
1881
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SkusTrackingService>;
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1884
|
+
declare class MediaSelectionDeclinaisonService {
|
|
1885
|
+
private _settingsService;
|
|
1886
|
+
private http;
|
|
1887
|
+
private _webSocket;
|
|
1888
|
+
constructor(_settingsService: SettingsService, http: HttpClient, _webSocket: websocketService);
|
|
1889
|
+
getAssetsForBomItem(bomItemGuid: string): rxjs.Observable<Object>;
|
|
1890
|
+
getAssetsForSku(skuGuid: string, archive?: boolean): rxjs.Observable<Object>;
|
|
1891
|
+
getAssetsForSkuAttribute(skuGuid: string, attributeGuid: string, archive?: boolean): rxjs.Observable<Object>;
|
|
1892
|
+
getAssetsForCategories(categoryGuid: string, field: string): rxjs.Observable<Object>;
|
|
1893
|
+
updateSkuImages(skuGuid: string, tabGuidImages: any, archive?: boolean): rxjs.Observable<Object>;
|
|
1894
|
+
updateBomModel(bomGuid: string, drawing: any): rxjs.Observable<Object>;
|
|
1895
|
+
updateBomItemImage(bomItemGuid: string, tabGuidImages: any): rxjs.Observable<Object>;
|
|
1896
|
+
updateSkuAttributeImages(skuGuid: string, tabGuidImages: any, attributeGuid: string, archive?: boolean): rxjs.Observable<Object>;
|
|
1897
|
+
updateCategoryImage(categoryGuid: string, tabGuidImages: any, fieldName: string): rxjs.Observable<Object>;
|
|
1898
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MediaSelectionDeclinaisonService, never>;
|
|
1899
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MediaSelectionDeclinaisonService>;
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
declare class SkusService {
|
|
1903
|
+
private http;
|
|
1904
|
+
private _settingsService;
|
|
1905
|
+
private _webSocket;
|
|
1906
|
+
constructor(http: HttpClient, _settingsService: SettingsService, _webSocket: websocketService);
|
|
813
1907
|
search(terms: {
|
|
814
1908
|
debounceTime: (arg0: number) => {
|
|
815
1909
|
(): any;
|
|
@@ -995,116 +2089,49 @@ declare class SkusService {
|
|
|
995
2089
|
skuAttributes: any;
|
|
996
2090
|
skuDefaultImage: any;
|
|
997
2091
|
skuTotalStock: any;
|
|
998
|
-
skuMinPrice: any;
|
|
999
|
-
}): Observable<Object>;
|
|
1000
|
-
deleteSkuBySkuGuid(skuGuid: string, archive?: boolean): Observable<Object>;
|
|
1001
|
-
deleteSkuBySkuListGuid(skuListGuid: any, archive?: boolean): Observable<Object>;
|
|
1002
|
-
deleteSkuGroup(listeGroup: any): Observable<Object>;
|
|
1003
|
-
removeCategories(skuGuid: any, categoryGuid: any, archive?: boolean): Observable<Object>;
|
|
1004
|
-
detachFromGroups(skus: any): Observable<Object>;
|
|
1005
|
-
detachAllSkuAndRecreateGroupByFieldSource(fieldSource: any): Observable<Object>;
|
|
1006
|
-
ungroupAllSku(): Observable<Object>;
|
|
1007
|
-
ungroupByGroupGuid(groupGuid: string): Observable<Object>;
|
|
1008
|
-
getVersions(skuGuid: string): Observable<Object>;
|
|
1009
|
-
addVersion(skuGuid: any, versionName: any, versionDescription: any, incrementType: any, archiveBase?: boolean): Observable<Object>;
|
|
1010
|
-
draftToProduct(skuGuid: any): Observable<Object>;
|
|
1011
|
-
deleteSkuInDraft(skuGuid: string): Observable<Object>;
|
|
1012
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SkusService, never>;
|
|
1013
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<SkusService>;
|
|
1014
|
-
}
|
|
1015
|
-
|
|
1016
|
-
interface Supplier {
|
|
1017
|
-
supplierGuid: string;
|
|
1018
|
-
supplierRef: string;
|
|
1019
|
-
supplierCompanyName: string;
|
|
1020
|
-
supplierContactName: string;
|
|
1021
|
-
supplierEmail: string;
|
|
1022
|
-
supplierAddress: string;
|
|
1023
|
-
supplierAddress2: string;
|
|
1024
|
-
supplierAddress3: string;
|
|
1025
|
-
supplierPostalCode: string;
|
|
1026
|
-
supplierCity: string;
|
|
1027
|
-
supplierCountry: string;
|
|
1028
|
-
supplierPhone: string;
|
|
1029
|
-
supplierMobilePhone: string;
|
|
1030
|
-
supplierLogin: string;
|
|
1031
|
-
supplierPassword: string;
|
|
1032
|
-
supplierAttributes: string;
|
|
1033
|
-
}
|
|
1034
|
-
|
|
1035
|
-
declare class SuppliersService {
|
|
1036
|
-
private http;
|
|
1037
|
-
private _settingsService;
|
|
1038
|
-
private _webSocket;
|
|
1039
|
-
constructor(http: HttpClient, _settingsService: SettingsService, _webSocket: websocketService);
|
|
1040
|
-
getAllSuppliers(): rxjs.Observable<Supplier[]>;
|
|
1041
|
-
getAllSupplierWithSearchLimitStartSortDirection(search: string, limit: string, start: string, sort: string, direction: string): rxjs.Observable<Supplier[]>;
|
|
1042
|
-
getAllSupplierWithSearchLimitStart(search: string, limit: string, start: string): rxjs.Observable<Supplier[]>;
|
|
1043
|
-
getSupplierById(supplierGuid: string): rxjs.Observable<Supplier>;
|
|
1044
|
-
createSupplier(supplierObj: {
|
|
1045
|
-
supplierRef: any;
|
|
1046
|
-
supplierCompanyName: any;
|
|
1047
|
-
supplierContactName: any;
|
|
1048
|
-
supplierAddress: any;
|
|
1049
|
-
supplierAddress2: any;
|
|
1050
|
-
supplierAddress3: any;
|
|
1051
|
-
supplierPostalCode: any;
|
|
1052
|
-
supplierCity: any;
|
|
1053
|
-
supplierCountry: any;
|
|
1054
|
-
supplierPhone: any;
|
|
1055
|
-
supplierMobilePhone: any;
|
|
1056
|
-
supplierLogin: any;
|
|
1057
|
-
supplierPassword: any;
|
|
1058
|
-
supplierAttributes: any;
|
|
1059
|
-
}): rxjs.Observable<Object>;
|
|
1060
|
-
changeSupplierRef(oldSupplierRef: any, newSupplierRef: any): rxjs.Observable<Object>;
|
|
1061
|
-
updateSupplierField(supplierGuid: any, fieldName: any, fieldValue: any, attribute: any, language: any): rxjs.Observable<Object>;
|
|
1062
|
-
updateSupplier(supplierObj: {
|
|
1063
|
-
supplierGuid: any;
|
|
1064
|
-
supplierRef: any;
|
|
1065
|
-
supplierCompanyName: any;
|
|
1066
|
-
supplierContactName: any;
|
|
1067
|
-
supplierAddress: any;
|
|
1068
|
-
supplierAddress2: any;
|
|
1069
|
-
supplierAddress3: any;
|
|
1070
|
-
supplierPostalCode: any;
|
|
1071
|
-
supplierCity: any;
|
|
1072
|
-
supplierCountry: any;
|
|
1073
|
-
supplierPhone: any;
|
|
1074
|
-
supplierMobilePhone: any;
|
|
1075
|
-
supplierLogin: any;
|
|
1076
|
-
supplierPassword: any;
|
|
1077
|
-
supplierAttributes: any;
|
|
1078
|
-
}): rxjs.Observable<Object>;
|
|
1079
|
-
deleteSupplierByListOfId(tabIdSupplier: any): rxjs.Observable<Object>;
|
|
1080
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SuppliersService, never>;
|
|
1081
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<SuppliersService>;
|
|
2092
|
+
skuMinPrice: any;
|
|
2093
|
+
}): Observable<Object>;
|
|
2094
|
+
deleteSkuBySkuGuid(skuGuid: string, archive?: boolean): Observable<Object>;
|
|
2095
|
+
deleteSkuBySkuListGuid(skuListGuid: any, archive?: boolean): Observable<Object>;
|
|
2096
|
+
deleteSkuGroup(listeGroup: any): Observable<Object>;
|
|
2097
|
+
removeCategories(skuGuid: any, categoryGuid: any, archive?: boolean): Observable<Object>;
|
|
2098
|
+
detachFromGroups(skus: any): Observable<Object>;
|
|
2099
|
+
detachAllSkuAndRecreateGroupByFieldSource(fieldSource: any): Observable<Object>;
|
|
2100
|
+
ungroupAllSku(): Observable<Object>;
|
|
2101
|
+
ungroupByGroupGuid(groupGuid: string): Observable<Object>;
|
|
2102
|
+
getVersions(skuGuid: string): Observable<Object>;
|
|
2103
|
+
addVersion(skuGuid: any, versionName: any, versionDescription: any, incrementType: any, archiveBase?: boolean): Observable<Object>;
|
|
2104
|
+
draftToProduct(skuGuid: any): Observable<Object>;
|
|
2105
|
+
deleteSkuInDraft(skuGuid: string): Observable<Object>;
|
|
2106
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkusService, never>;
|
|
2107
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SkusService>;
|
|
1082
2108
|
}
|
|
1083
2109
|
|
|
1084
2110
|
declare class AccountsService {
|
|
1085
2111
|
private http;
|
|
1086
2112
|
private _settingsService;
|
|
1087
|
-
private auth;
|
|
1088
2113
|
private _webSocket;
|
|
1089
|
-
constructor(http: HttpClient, _settingsService: SettingsService,
|
|
2114
|
+
constructor(http: HttpClient, _settingsService: SettingsService, _webSocket: websocketService);
|
|
1090
2115
|
convert(contactGuidArray: any): rxjs.Observable<Object>;
|
|
1091
2116
|
sendMailContactSubscription(accountContactGuid: string, channelGuid: any): rxjs.Observable<Object>;
|
|
1092
2117
|
sendMailForgotPassword(accountContactGuid: string, channelGuid: any, initPassword: any): rxjs.Observable<Object>;
|
|
1093
|
-
getTranchesCustomers(start:
|
|
1094
|
-
getTranchesCustomersWithSearch(limit:
|
|
1095
|
-
getTranchesCustomersWithSearchAndSort(limit:
|
|
2118
|
+
getTranchesCustomers(start: number, limit: number): rxjs.Observable<Object>;
|
|
2119
|
+
getTranchesCustomersWithSearch(limit: number, start: number, searchWord: string, channelGuid: string, direction: string): rxjs.Observable<Object>;
|
|
2120
|
+
getTranchesCustomersWithSearchAndSort(limit: number, start: number, searchWord: string, sortColumn: string, order: string, channelGuid: string): rxjs.Observable<Object>;
|
|
2121
|
+
getAccountsByArray(accountsGuids: any): rxjs.Observable<Object>;
|
|
1096
2122
|
getCustomer(numeroCompte: string): rxjs.Observable<Object>;
|
|
1097
2123
|
getCategory(AccountCategoryName: string, dir: string): rxjs.Observable<Object>;
|
|
1098
2124
|
getPriceList(): rxjs.Observable<Object>;
|
|
1099
2125
|
getAllContacts(compteGuid: string, AccountContactProfile: string): rxjs.Observable<Object>;
|
|
1100
2126
|
getContact(contactGuid: string): rxjs.Observable<Object>;
|
|
1101
2127
|
getShippingAddresses(customerAccount: string, ship: string): rxjs.Observable<Object>;
|
|
1102
|
-
getAccountsMap(limit:
|
|
2128
|
+
getAccountsMap(limit: number, start: number, searchWord: string, sortColumn: string, direction: string): rxjs.Observable<Object>;
|
|
1103
2129
|
getCoordinateFromAddressAccount(accountCity: any, accountCountry: any, accountPostalCode: any, accountStreet: any): rxjs.Observable<Object>;
|
|
1104
2130
|
getCoordinateFromAddressString(address: any): rxjs.Observable<Object>;
|
|
1105
2131
|
addAccount(accountNumber: any, accountType: any, accountCategoryGuid: any, accountOwner: any, accountTeam: any, accountPricesListGuid: any, accountCompany: any, accountAddress: any, accountAddress2: any, accountAddress3: any, accountCity: any, accountPostalCode: any, accountCountry: any, accountState: any, accountPhone: any, accountFax: any, accountLanguage: any, accountAccountFTP: any, accountPasswordFTP: any, accountApeCode: any, accountSalerAccount: any, accountPaymentGuid: any, accountSiret: any, accountNTI: any): rxjs.Observable<Object>;
|
|
1106
2132
|
addShippingAddress(accountGuid: any, accountContactGuid: any, title: any, company: any, lastName: any, firstName: any, email: any, address: any, address2: any, address3: any, address4: any, postalCode: any, city: any, country: any): rxjs.Observable<Object>;
|
|
1107
2133
|
addContact(object: any): rxjs.Observable<Object>;
|
|
2134
|
+
mergeAccounts(mainAccountGuid: string, accountsGuids: string[]): rxjs.Observable<Object>;
|
|
1108
2135
|
updateCustomerByField(customerAccount: any, fieldName: any, fieldValue: any, attribute: any, language: any): rxjs.Observable<Object>;
|
|
1109
2136
|
changeCustomerCategory(customerAccount: string, customerCategoryId: string): rxjs.Observable<Object>;
|
|
1110
2137
|
updateCustomerAccount(accountGuid: any, fieldName: any, fieldValue: any): rxjs.Observable<Object>;
|
|
@@ -1119,38 +2146,131 @@ declare class AccountsService {
|
|
|
1119
2146
|
deleteCustomers(tabId: any): rxjs.Observable<Object>;
|
|
1120
2147
|
deleteContact(guid: string): rxjs.Observable<Object>;
|
|
1121
2148
|
deleteContacts(arrayContacts: any): rxjs.Observable<Object>;
|
|
1122
|
-
deleteShippingAddress(shippingGuid:
|
|
2149
|
+
deleteShippingAddress(shippingGuid: any[]): rxjs.Observable<Object>;
|
|
1123
2150
|
static ɵfac: i0.ɵɵFactoryDeclaration<AccountsService, never>;
|
|
1124
2151
|
static ɵprov: i0.ɵɵInjectableDeclaration<AccountsService>;
|
|
1125
2152
|
}
|
|
1126
2153
|
|
|
2154
|
+
declare class OrdersService {
|
|
2155
|
+
private http;
|
|
2156
|
+
private _settingsService;
|
|
2157
|
+
private _webSocket;
|
|
2158
|
+
constructor(http: HttpClient, _settingsService: SettingsService, _webSocket: websocketService);
|
|
2159
|
+
regeneratePDF(object: any): rxjs.Observable<Object>;
|
|
2160
|
+
sendMailNoticeAfterOrder(object: any): rxjs.Observable<Object>;
|
|
2161
|
+
setStatus(orderIdList: any[], oldStatus: string, newStatus: string): rxjs.Observable<Object>;
|
|
2162
|
+
setStatusOne(orderGuid: string, orderStatus: number): rxjs.Observable<Object>;
|
|
2163
|
+
setStatusList(listOrder: any, orderStatus: any): rxjs.Observable<Object>;
|
|
2164
|
+
setCommentary(idOrder: string, modifiedCommentary: string): rxjs.Observable<Object>;
|
|
2165
|
+
setExpeditionCode(idOrder: string, newExpeditionCode: string): rxjs.Observable<Object>;
|
|
2166
|
+
getOrders(limit: number, start: number): rxjs.Observable<Object>;
|
|
2167
|
+
getStatus(): rxjs.Observable<Object>;
|
|
2168
|
+
getOrderByGuid(): rxjs.Observable<Object>;
|
|
2169
|
+
getOrdersWithSearchWithoutStatus(limit: number, start: number, searchWord: string, direction: string): rxjs.Observable<Object>;
|
|
2170
|
+
getOrdersWithSearch(limit: number, start: number, searchWord: string, status: number | string, direction: string): rxjs.Observable<Object>;
|
|
2171
|
+
getOrdersWithSearchAndSort(limit: number, start: number, searchWord: string, sortColumn: string, direction: string, status: number): rxjs.Observable<Object>;
|
|
2172
|
+
getPdf(idOrder: string): rxjs.Observable<Object>;
|
|
2173
|
+
getCommentary(idOrder: string): rxjs.Observable<Object>;
|
|
2174
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrdersService, never>;
|
|
2175
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OrdersService>;
|
|
2176
|
+
}
|
|
2177
|
+
|
|
2178
|
+
declare class RequestsService {
|
|
2179
|
+
private http;
|
|
2180
|
+
private settingsService;
|
|
2181
|
+
private _webSocket;
|
|
2182
|
+
private api;
|
|
2183
|
+
constructor(http: HttpClient, settingsService: SettingsService, _webSocket: websocketService);
|
|
2184
|
+
setVu(object: any): rxjs.Observable<Object>;
|
|
2185
|
+
setRepondu(object: any): rxjs.Observable<Object>;
|
|
2186
|
+
deleteRequestByRequestListGuid(requestListGuid: string[]): rxjs.Observable<Object>;
|
|
2187
|
+
getAllContacts(start: number, limit: number, channelGuid: string, search: string): rxjs.Observable<Object>;
|
|
2188
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RequestsService, never>;
|
|
2189
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RequestsService>;
|
|
2190
|
+
}
|
|
2191
|
+
|
|
2192
|
+
declare class CataloguesService {
|
|
2193
|
+
private http;
|
|
2194
|
+
private settingsService;
|
|
2195
|
+
private _webSocket;
|
|
2196
|
+
private api;
|
|
2197
|
+
constructor(http: HttpClient, settingsService: SettingsService, _webSocket: websocketService);
|
|
2198
|
+
getCatalogs(): rxjs.Observable<Object>;
|
|
2199
|
+
getTranchesCatalogsWithSearchAndSort(nbrElementPage: any, start: any, searchWord: string, columnSort: string, order: string): rxjs.Observable<Object>;
|
|
2200
|
+
getTranchesCatalogsWithSearch(nbrElementPage: any, start: any, searchWord: string): rxjs.Observable<Object>;
|
|
2201
|
+
createCatalogs(catalogsObject: any): rxjs.Observable<Object>;
|
|
2202
|
+
updateCatalogs(catalogsObject: any): rxjs.Observable<Object>;
|
|
2203
|
+
deleteCatalog(catalogGuid: string): rxjs.Observable<Object>;
|
|
2204
|
+
deleteCatalogs(catalogsObject: any): rxjs.Observable<Object>;
|
|
2205
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CataloguesService, never>;
|
|
2206
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CataloguesService>;
|
|
2207
|
+
}
|
|
2208
|
+
|
|
1127
2209
|
declare class FrameworkagreementsService {
|
|
1128
2210
|
private http;
|
|
1129
2211
|
private _settingsService;
|
|
1130
|
-
private auth;
|
|
1131
2212
|
private _webSocket;
|
|
1132
2213
|
private api;
|
|
1133
|
-
constructor(http: HttpClient, _settingsService: SettingsService,
|
|
1134
|
-
getFrameworkAgreementsWithSearchAndSort(nbrElementPage:
|
|
1135
|
-
getFrameworkAgreementsWithSearch(nbrElementPage:
|
|
1136
|
-
getAccountsOfFrameworkAgreement(guid: string, start:
|
|
1137
|
-
getAccountsSkusPricesOfFrameworkAgreement(guid: string, start:
|
|
2214
|
+
constructor(http: HttpClient, _settingsService: SettingsService, _webSocket: websocketService);
|
|
2215
|
+
getFrameworkAgreementsWithSearchAndSort(nbrElementPage: any, start: any, searchWord: string, columnSort: string, order: string, accountGuid: string): rxjs.Observable<Object>;
|
|
2216
|
+
getFrameworkAgreementsWithSearch(nbrElementPage: any, start: any, searchWord: string): rxjs.Observable<Object>;
|
|
2217
|
+
getAccountsOfFrameworkAgreement(guid: string | number, start: any, limit: any, search: string, sort: any, direction: string): rxjs.Observable<Object>;
|
|
2218
|
+
getAccountsSkusPricesOfFrameworkAgreement(guid: string | number, start: any, limit: any, search: string, sort: string, direction: string, language: string): rxjs.Observable<Object>;
|
|
1138
2219
|
getFrameworkAgreements(guid: string): rxjs.Observable<Object>;
|
|
1139
|
-
createFrameworkAgreement(internalRef:
|
|
1140
|
-
attach(dealFrameworkAgreementGuid: string, guidAcc: any): rxjs.Observable<Object>;
|
|
1141
|
-
createFrameworkAgreementSkusPrices(dealFrameworkAgreementGuid:
|
|
1142
|
-
updateFrameworkAgreementByField(dealFrameworkAgreementGuid:
|
|
1143
|
-
updateDealCatalogCollection(dealFrameworkAgreementGuid:
|
|
1144
|
-
updateFrameworkAgreementPriceWithAccountSkuPriceGuid(accountSkuPriceGuid:
|
|
1145
|
-
updateFrameworkAgreementPrice(skuGuid:
|
|
1146
|
-
updateOrCreateFrameworkAgreementSkusPrices(dealFrameworkAgreementGuid:
|
|
1147
|
-
deleteFrameworkAgreements(listGuid:
|
|
1148
|
-
deleteFrameworkAgreementsSkusPrices(dealFrameworkAgreementGuid: string, skuGuid: string): rxjs.Observable<Object>;
|
|
1149
|
-
detach(dealFrameworkAgreementGuid: string, guidAcc: any): rxjs.Observable<Object>;
|
|
2220
|
+
createFrameworkAgreement(internalRef: string, externalRef: string, dealName: string, startedAt: Date, endedAt: Date): rxjs.Observable<Object>;
|
|
2221
|
+
attach(dealFrameworkAgreementGuid: string | number, guidAcc: any): rxjs.Observable<Object>;
|
|
2222
|
+
createFrameworkAgreementSkusPrices(dealFrameworkAgreementGuid: string | number, sku: string, accountSkuPricePrice?: number, accountSkuPricePriceFromQuantity?: number, accountSkuPriceEcoContribution?: number, accountSkuPriceDateStart?: null, accountSkuPriceDateEnd?: null, accountSkuPriceSkuOptions?: {}, accountSkuPriceIsDealFrameworkAgreement?: boolean): rxjs.Observable<Object>;
|
|
2223
|
+
updateFrameworkAgreementByField(dealFrameworkAgreementGuid: string | number, fieldName: string, fieldValue: any, attribute: boolean, language: string): rxjs.Observable<Object>;
|
|
2224
|
+
updateDealCatalogCollection(dealFrameworkAgreementGuid: string, tabGuid: string): rxjs.Observable<Object>;
|
|
2225
|
+
updateFrameworkAgreementPriceWithAccountSkuPriceGuid(accountSkuPriceGuid: string, dealFrameworkAgreementGuid: string | number, accountSkuPricePrice: number, accountSkuPricePriceFromQuantity: number, accountSkuPriceEcoContribution: number): rxjs.Observable<Object>;
|
|
2226
|
+
updateFrameworkAgreementPrice(skuGuid: string, dealFrameworkAgreementGuid: string, accountSkuPricePrice: number, accountSkuPricePriceFromQuantity: number, accountSkuPriceEcoContribution: number): rxjs.Observable<Object>;
|
|
2227
|
+
updateOrCreateFrameworkAgreementSkusPrices(dealFrameworkAgreementGuid: string, listSkuPrices: any[]): rxjs.Observable<Object>;
|
|
2228
|
+
deleteFrameworkAgreements(listGuid: string[]): rxjs.Observable<Object>;
|
|
2229
|
+
deleteFrameworkAgreementsSkusPrices(dealFrameworkAgreementGuid: string | number, skuGuid: string): rxjs.Observable<Object>;
|
|
2230
|
+
detach(dealFrameworkAgreementGuid: string | number, guidAcc: any): rxjs.Observable<Object>;
|
|
1150
2231
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrameworkagreementsService, never>;
|
|
1151
2232
|
static ɵprov: i0.ɵɵInjectableDeclaration<FrameworkagreementsService>;
|
|
1152
2233
|
}
|
|
1153
2234
|
|
|
2235
|
+
declare class OrganizationsService {
|
|
2236
|
+
private http;
|
|
2237
|
+
private settingsService;
|
|
2238
|
+
private _webSocket;
|
|
2239
|
+
private api;
|
|
2240
|
+
constructor(http: HttpClient, settingsService: SettingsService, _webSocket: websocketService);
|
|
2241
|
+
setActive(guid: string | number, value: string): rxjs.Observable<Object>;
|
|
2242
|
+
getTranchesOrganisationsWithSearchAndSort(nbrElementPage: number, start: number, searchWord: string, columnSort: string, order: string): rxjs.Observable<Object>;
|
|
2243
|
+
getTranchesOrganisationsWithSearch(nbrElementPage: number, start: number, searchWord: string): rxjs.Observable<Object>;
|
|
2244
|
+
getOrgaByGuid(guid: string | number): rxjs.Observable<Object>;
|
|
2245
|
+
getContactOrga(organisarionGuid: string | number): rxjs.Observable<Object>;
|
|
2246
|
+
getAccountOrgaGuid(guid: string | number, start: number, limit: number, search: string, sort: any, direction: string): rxjs.Observable<Object>;
|
|
2247
|
+
createOrganisation(number: number | string, name: string, activ: boolean): rxjs.Observable<Object>;
|
|
2248
|
+
assignAdmin(orgaGuid: string | number, contactGuid: string): rxjs.Observable<Object>;
|
|
2249
|
+
attach(guidOrga: string | number, guidAcc: any): rxjs.Observable<Object>;
|
|
2250
|
+
modifyOrganisation(guid: string | number, name: string, number: number | string, activ: boolean): rxjs.Observable<Object>;
|
|
2251
|
+
updateAdmins(orgaGuid: string | number, tzabGuidContact: string, tabOldGuid: string[]): rxjs.Observable<Object>;
|
|
2252
|
+
deleteOrganisation(listGuid: string[]): rxjs.Observable<Object>;
|
|
2253
|
+
unassignAdmin(orgaGuid: string | number, contactGuid: string): rxjs.Observable<Object>;
|
|
2254
|
+
detach(guidOrga: string | number, guidAcc: any): rxjs.Observable<Object>;
|
|
2255
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrganizationsService, never>;
|
|
2256
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OrganizationsService>;
|
|
2257
|
+
}
|
|
2258
|
+
|
|
2259
|
+
declare class SalersService {
|
|
2260
|
+
private http;
|
|
2261
|
+
private settingsService;
|
|
2262
|
+
private _webSocket;
|
|
2263
|
+
constructor(http: HttpClient, settingsService: SettingsService, _webSocket: websocketService);
|
|
2264
|
+
getTranchesSalersWithSearchAndSort(nbrElementPage: number, start: number, searchWord: string, columnSort: string, order: string): rxjs.Observable<Object>;
|
|
2265
|
+
getSalerByGuid(guid: string): rxjs.Observable<Object>;
|
|
2266
|
+
createSaler(saler: any): rxjs.Observable<Object>;
|
|
2267
|
+
updateSalerByField(salesrepGuid: string, fieldName: string, fieldValue: string): rxjs.Observable<Object>;
|
|
2268
|
+
updateSalerPassword(salesrepGuid: string, newpassword: string): rxjs.Observable<Object>;
|
|
2269
|
+
deleteSalers(listGuid: string[]): rxjs.Observable<Object>;
|
|
2270
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SalersService, never>;
|
|
2271
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SalersService>;
|
|
2272
|
+
}
|
|
2273
|
+
|
|
1154
2274
|
declare class TranslateService {
|
|
1155
2275
|
private http;
|
|
1156
2276
|
private _settingsService;
|
|
@@ -1167,12 +2287,12 @@ declare class TranslateService {
|
|
|
1167
2287
|
|
|
1168
2288
|
declare class TranslatorService {
|
|
1169
2289
|
translate: TranslateService$1;
|
|
1170
|
-
|
|
2290
|
+
_companies: CompanyService;
|
|
1171
2291
|
auth: AuthService;
|
|
1172
2292
|
private _settings;
|
|
1173
2293
|
private defaultLanguage;
|
|
1174
2294
|
private availablelangs;
|
|
1175
|
-
constructor(translate: TranslateService$1,
|
|
2295
|
+
constructor(translate: TranslateService$1, _companies: CompanyService, auth: AuthService, _settings: SettingsService);
|
|
1176
2296
|
setDefaultLang(): void;
|
|
1177
2297
|
useLanguage(lang: string): void;
|
|
1178
2298
|
getAvailableLanguages(): {
|
|
@@ -1183,36 +2303,13 @@ declare class TranslatorService {
|
|
|
1183
2303
|
static ɵprov: i0.ɵɵInjectableDeclaration<TranslatorService>;
|
|
1184
2304
|
}
|
|
1185
2305
|
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
attributesGroupIsSystem: Boolean;
|
|
1194
|
-
}
|
|
1195
|
-
interface AttributeObject {
|
|
1196
|
-
attributeguid: String;
|
|
1197
|
-
attributeName: Object;
|
|
1198
|
-
attributesGroupGuid: String;
|
|
1199
|
-
attributeType: String;
|
|
1200
|
-
attributeIsActive: Boolean;
|
|
1201
|
-
attributeIsFront: Boolean;
|
|
1202
|
-
attributeIsTrashbin: Boolean;
|
|
1203
|
-
attributeIsReadonly: Boolean;
|
|
1204
|
-
attributeIsMandatory: Boolean;
|
|
1205
|
-
attributeIsUnique: Boolean;
|
|
1206
|
-
attributeIsTranslate: Boolean;
|
|
1207
|
-
attributeOrder: Number;
|
|
1208
|
-
attributeNote: String;
|
|
1209
|
-
attributeInitialValue: Object;
|
|
1210
|
-
attributeMinValue: String;
|
|
1211
|
-
attributeMaxValue: String;
|
|
1212
|
-
attributeMaxNumberDigits: String;
|
|
1213
|
-
attributeDecimalPoints: String;
|
|
1214
|
-
attributeMaxCharacters: String;
|
|
1215
|
-
attributeOptions: Object;
|
|
2306
|
+
declare class SearchsService {
|
|
2307
|
+
private http;
|
|
2308
|
+
private _settingsService;
|
|
2309
|
+
constructor(http: HttpClient, _settingsService: SettingsService);
|
|
2310
|
+
makeKeywords(): rxjs.Observable<Object>;
|
|
2311
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SearchsService, never>;
|
|
2312
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SearchsService>;
|
|
1216
2313
|
}
|
|
1217
2314
|
|
|
1218
2315
|
declare class AttributesService {
|
|
@@ -1296,38 +2393,6 @@ declare class AttributesService {
|
|
|
1296
2393
|
static ɵprov: i0.ɵɵInjectableDeclaration<AttributesService>;
|
|
1297
2394
|
}
|
|
1298
2395
|
|
|
1299
|
-
interface MaskName {
|
|
1300
|
-
fr: string;
|
|
1301
|
-
}
|
|
1302
|
-
interface Mask {
|
|
1303
|
-
maskGuid: string;
|
|
1304
|
-
maskName: MaskName;
|
|
1305
|
-
maskNote: string;
|
|
1306
|
-
}
|
|
1307
|
-
|
|
1308
|
-
declare class MasksService {
|
|
1309
|
-
private http;
|
|
1310
|
-
private _settings;
|
|
1311
|
-
constructor(http: HttpClient, _settings: SettingsService);
|
|
1312
|
-
withoutMaskByMaskGuidAndAttributesGroupGuid(maskGuid: string, attributesGroupGuid: string, maskAttributeIsVariant?: boolean): rxjs.Observable<AttributeObject[]>;
|
|
1313
|
-
withoutMaskByGroupGuid(attributesGroupGuid: string): rxjs.Observable<AttributeObject[]>;
|
|
1314
|
-
withoutMask(attributesGroupType: string): rxjs.Observable<AttributeObject[]>;
|
|
1315
|
-
getAttributesByMaskGuid(maskGuid: string, maskAttributeIsVariant?: boolean): rxjs.Observable<AttributeObject[]>;
|
|
1316
|
-
getAttributesInThisMaskOrderByGroup(maskGuid: string): rxjs.Observable<AttributeObject[]>;
|
|
1317
|
-
getAttributesByMaskWithAttributeGroupTypeAndWithoutAttributesGroupGuid(maskGuid: string, attributesGroupType: string): rxjs.Observable<AttributeObject[]>;
|
|
1318
|
-
getAttributesByMaskWithAttributeGroupTypeAndAttributesGroupGuid(maskGuid: string, attributesGroupType: string, attributesGroupGuid: string): rxjs.Observable<AttributeObject[]>;
|
|
1319
|
-
getAllMasks(): rxjs.Observable<Mask[]>;
|
|
1320
|
-
getOneMask(maskGuid: string): rxjs.Observable<Mask[]>;
|
|
1321
|
-
createMask(maskName: any, maskNote: any, maskIsTranslate: any): rxjs.Observable<Object>;
|
|
1322
|
-
addToMask(maskGuid: any, attributes: any, maskAttributeIsVariant?: boolean): rxjs.Observable<Object>;
|
|
1323
|
-
updateMask(maskGuid: any, maskNameObject: any, maskNote: any, maskIsTranslate: any): rxjs.Observable<Object>;
|
|
1324
|
-
deleteOneMask(maskGuid: string): rxjs.Observable<Object>;
|
|
1325
|
-
removeToMask(maskGuid: any, attributes: any, maskAttributeIsVariant?: boolean): rxjs.Observable<Object>;
|
|
1326
|
-
updateToMask(maskGuid: any, attributeGuid: any, field: any, fieldValue: any, maskAttributeIsVariant: any): rxjs.Observable<Object>;
|
|
1327
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MasksService, never>;
|
|
1328
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<MasksService>;
|
|
1329
|
-
}
|
|
1330
|
-
|
|
1331
2396
|
declare class DamAssetsService {
|
|
1332
2397
|
private auth;
|
|
1333
2398
|
private _settingsService;
|
|
@@ -1385,29 +2450,28 @@ declare class DamAssetsService {
|
|
|
1385
2450
|
}
|
|
1386
2451
|
|
|
1387
2452
|
declare class MediaSelectionService {
|
|
1388
|
-
private auth;
|
|
1389
2453
|
private _settingsService;
|
|
1390
2454
|
private http;
|
|
1391
2455
|
private _webSocket;
|
|
1392
|
-
constructor(
|
|
2456
|
+
constructor(_settingsService: SettingsService, http: HttpClient, _webSocket: websocketService);
|
|
1393
2457
|
getAssetsForBomItem(bomItemGuid: string): rxjs.Observable<Object>;
|
|
1394
2458
|
getAssetsForBom(bomGuid: string): rxjs.Observable<Object>;
|
|
1395
2459
|
getAssetsForBomDrawing(bomGuid: string): rxjs.Observable<Object>;
|
|
1396
2460
|
getAssetsForSku(skuGuid: string, archive?: boolean): rxjs.Observable<Object>;
|
|
1397
2461
|
getAssetsForSkuAttribute(skuGuid: string, attributeGuid: string, archive?: boolean, language?: string): rxjs.Observable<Object>;
|
|
1398
2462
|
getAssetsForCategoryAttribute(skuGuid: string, attributeGuid: string): rxjs.Observable<Object>;
|
|
1399
|
-
getAssetsByType(skuGuid: string, attributeGuid: string, type:
|
|
2463
|
+
getAssetsByType(skuGuid: string, attributeGuid: string, type: string): rxjs.Observable<Object>;
|
|
1400
2464
|
getAssetsForCategories(categoryGuid: string, field: string): rxjs.Observable<Object>;
|
|
1401
|
-
getAssetsByGuidArray(guids: any): rxjs.Observable<Object>;
|
|
1402
|
-
updateSkuImages(skuGuid:
|
|
1403
|
-
replaceSkuImages(skuGuid:
|
|
1404
|
-
updateBomModel(bomGuid:
|
|
1405
|
-
updateBomItemImage(bomItemGuid:
|
|
1406
|
-
updateBomImage(bomGuid:
|
|
1407
|
-
updateSkuAttributeImages(skuGuid:
|
|
1408
|
-
updateCategoryAttributeImages(categoryGuid:
|
|
1409
|
-
updateCategoryImage(categoryGuid:
|
|
1410
|
-
updateWorkflowImage(assetGuid:
|
|
2465
|
+
getAssetsByGuidArray(guids: any[]): rxjs.Observable<Object>;
|
|
2466
|
+
updateSkuImages(skuGuid: string, tabGuidImages: any, archive?: boolean): rxjs.Observable<Object>;
|
|
2467
|
+
replaceSkuImages(skuGuid: string, assetguidToReplace: boolean, assetGuidToInsert: string, archive?: boolean): rxjs.Observable<Object>;
|
|
2468
|
+
updateBomModel(bomGuid: string, drawing: any): rxjs.Observable<Object>;
|
|
2469
|
+
updateBomItemImage(bomItemGuid: string, tabGuidImages: any): rxjs.Observable<Object>;
|
|
2470
|
+
updateBomImage(bomGuid: string, field: string, guidBomDrawing: any): rxjs.Observable<Object>;
|
|
2471
|
+
updateSkuAttributeImages(skuGuid: string, tabGuidImages: any, attributeGuid: string, archive?: boolean, oneLanguage?: string): rxjs.Observable<Object>;
|
|
2472
|
+
updateCategoryAttributeImages(categoryGuid: string, tabGuidImages: any, attributeGuid: string): rxjs.Observable<Object>;
|
|
2473
|
+
updateCategoryImage(categoryGuid: string, tabGuidImages: any, fieldName: string): rxjs.Observable<Object>;
|
|
2474
|
+
updateWorkflowImage(assetGuid: string, workitemGuid: string): rxjs.Observable<Object>;
|
|
1411
2475
|
static ɵfac: i0.ɵɵFactoryDeclaration<MediaSelectionService, never>;
|
|
1412
2476
|
static ɵprov: i0.ɵɵInjectableDeclaration<MediaSelectionService>;
|
|
1413
2477
|
}
|
|
@@ -1424,6 +2488,615 @@ declare class SearchService {
|
|
|
1424
2488
|
static ɵprov: i0.ɵɵInjectableDeclaration<SearchService>;
|
|
1425
2489
|
}
|
|
1426
2490
|
|
|
2491
|
+
interface Bom {
|
|
2492
|
+
bomGuid: string;
|
|
2493
|
+
bomInternalRef: string;
|
|
2494
|
+
bomExternalRef: string;
|
|
2495
|
+
bomOEM: string;
|
|
2496
|
+
bomName: string;
|
|
2497
|
+
bomDescription: string;
|
|
2498
|
+
bomDrawing: string;
|
|
2499
|
+
bomComments: string;
|
|
2500
|
+
bomCategory: {};
|
|
2501
|
+
bomBrand: string;
|
|
2502
|
+
bomModel: string;
|
|
2503
|
+
bomType: string;
|
|
2504
|
+
bomShared: number;
|
|
2505
|
+
bomIsActive: boolean;
|
|
2506
|
+
bomStatusGuid: string;
|
|
2507
|
+
bomVersion: string;
|
|
2508
|
+
bomChannelCollection: [];
|
|
2509
|
+
bomAccountGuid: string;
|
|
2510
|
+
bomOwner: string;
|
|
2511
|
+
bomTeam: string;
|
|
2512
|
+
bomAttributes: {};
|
|
2513
|
+
}
|
|
2514
|
+
|
|
2515
|
+
declare class BomService {
|
|
2516
|
+
private http;
|
|
2517
|
+
private settingsService;
|
|
2518
|
+
private _webSocket;
|
|
2519
|
+
private api;
|
|
2520
|
+
constructor(http: HttpClient, settingsService: SettingsService, _webSocket: websocketService);
|
|
2521
|
+
getAllBoms(start?: number, limit?: number, search?: string, sort?: string, direction?: string): rxjs.Observable<Object>;
|
|
2522
|
+
getBomByBomGuid(bomguid: string): rxjs.Observable<Object>;
|
|
2523
|
+
getAsset(assetGuid: string): rxjs.Observable<Object>;
|
|
2524
|
+
createBom(jsonName: any, bomInternalRef: string, bomExternalRef: string, jsonDesc: any, bomComments: string): rxjs.Observable<Object>;
|
|
2525
|
+
updateBom(bom: Bom, jsonName: string, bomInternalRef: string, bomExternalRef: string, jsonDesc: string, bomComments: string): rxjs.Observable<Object>;
|
|
2526
|
+
updateField(bomguid: string, fieldName: string, fieldValue: any): rxjs.Observable<Object>;
|
|
2527
|
+
deleteBom(bomguid: string): rxjs.Observable<Object>;
|
|
2528
|
+
deleteListBoms(listBomGuid: Array<any>): rxjs.Observable<Object>;
|
|
2529
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BomService, never>;
|
|
2530
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BomService>;
|
|
2531
|
+
}
|
|
2532
|
+
|
|
2533
|
+
declare class BomsitemsService {
|
|
2534
|
+
private http;
|
|
2535
|
+
private settingsService;
|
|
2536
|
+
private api;
|
|
2537
|
+
constructor(http: HttpClient, settingsService: SettingsService);
|
|
2538
|
+
insertBomsItems(bomItem: any): rxjs.Observable<Object>;
|
|
2539
|
+
getAllBomsItems(bomGuid: string, search?: string, limit?: number, start?: number): rxjs.Observable<Object>;
|
|
2540
|
+
getBomsItemByBomItemGuid(bomsItemsGuid: string): rxjs.Observable<Object>;
|
|
2541
|
+
getAssetsByBomItem(bomItemGuid: string): rxjs.Observable<Object>;
|
|
2542
|
+
updateBomsItems(bomItem: any): rxjs.Observable<Object>;
|
|
2543
|
+
updateBomsItemsField(bomItemGuid: string, fieldName: string, fieldValue: any): rxjs.Observable<Object>;
|
|
2544
|
+
deleteBomsItems(bomsItemsGuid: string): rxjs.Observable<Object>;
|
|
2545
|
+
deleteListBomsItems(listBomItemsGuid: Array<any>): rxjs.Observable<Object>;
|
|
2546
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BomsitemsService, never>;
|
|
2547
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BomsitemsService>;
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2550
|
+
declare class ChannelsService {
|
|
2551
|
+
private http;
|
|
2552
|
+
private settings;
|
|
2553
|
+
private _webSocket;
|
|
2554
|
+
jsonVide: {
|
|
2555
|
+
home: {
|
|
2556
|
+
selected: string;
|
|
2557
|
+
standard: ({
|
|
2558
|
+
slider: {
|
|
2559
|
+
assets: never[];
|
|
2560
|
+
links: never[];
|
|
2561
|
+
isDisplay: boolean;
|
|
2562
|
+
withThumbnail: boolean;
|
|
2563
|
+
};
|
|
2564
|
+
categories?: undefined;
|
|
2565
|
+
categories4x1?: undefined;
|
|
2566
|
+
cmscategories?: undefined;
|
|
2567
|
+
skuIsNew?: undefined;
|
|
2568
|
+
skuIsBestSeller?: undefined;
|
|
2569
|
+
skuIsSelection1?: undefined;
|
|
2570
|
+
skuIsSelection2?: undefined;
|
|
2571
|
+
skuIsPromotion?: undefined;
|
|
2572
|
+
htmlBlock1?: undefined;
|
|
2573
|
+
htmlBlock2?: undefined;
|
|
2574
|
+
htmlBlock3?: undefined;
|
|
2575
|
+
cms?: undefined;
|
|
2576
|
+
} | {
|
|
2577
|
+
categories: {
|
|
2578
|
+
isDisplay: boolean;
|
|
2579
|
+
withImages: boolean;
|
|
2580
|
+
title: {
|
|
2581
|
+
fr: string;
|
|
2582
|
+
en: string;
|
|
2583
|
+
es: string;
|
|
2584
|
+
};
|
|
2585
|
+
};
|
|
2586
|
+
slider?: undefined;
|
|
2587
|
+
categories4x1?: undefined;
|
|
2588
|
+
cmscategories?: undefined;
|
|
2589
|
+
skuIsNew?: undefined;
|
|
2590
|
+
skuIsBestSeller?: undefined;
|
|
2591
|
+
skuIsSelection1?: undefined;
|
|
2592
|
+
skuIsSelection2?: undefined;
|
|
2593
|
+
skuIsPromotion?: undefined;
|
|
2594
|
+
htmlBlock1?: undefined;
|
|
2595
|
+
htmlBlock2?: undefined;
|
|
2596
|
+
htmlBlock3?: undefined;
|
|
2597
|
+
cms?: undefined;
|
|
2598
|
+
} | {
|
|
2599
|
+
categories4x1: {
|
|
2600
|
+
isDisplay: boolean;
|
|
2601
|
+
withImages: boolean;
|
|
2602
|
+
title: {
|
|
2603
|
+
fr: string;
|
|
2604
|
+
en: string;
|
|
2605
|
+
es: string;
|
|
2606
|
+
};
|
|
2607
|
+
};
|
|
2608
|
+
slider?: undefined;
|
|
2609
|
+
categories?: undefined;
|
|
2610
|
+
cmscategories?: undefined;
|
|
2611
|
+
skuIsNew?: undefined;
|
|
2612
|
+
skuIsBestSeller?: undefined;
|
|
2613
|
+
skuIsSelection1?: undefined;
|
|
2614
|
+
skuIsSelection2?: undefined;
|
|
2615
|
+
skuIsPromotion?: undefined;
|
|
2616
|
+
htmlBlock1?: undefined;
|
|
2617
|
+
htmlBlock2?: undefined;
|
|
2618
|
+
htmlBlock3?: undefined;
|
|
2619
|
+
cms?: undefined;
|
|
2620
|
+
} | {
|
|
2621
|
+
cmscategories: {
|
|
2622
|
+
count: number;
|
|
2623
|
+
isDisplay: boolean;
|
|
2624
|
+
cmsCategoryGuid: string;
|
|
2625
|
+
};
|
|
2626
|
+
slider?: undefined;
|
|
2627
|
+
categories?: undefined;
|
|
2628
|
+
categories4x1?: undefined;
|
|
2629
|
+
skuIsNew?: undefined;
|
|
2630
|
+
skuIsBestSeller?: undefined;
|
|
2631
|
+
skuIsSelection1?: undefined;
|
|
2632
|
+
skuIsSelection2?: undefined;
|
|
2633
|
+
skuIsPromotion?: undefined;
|
|
2634
|
+
htmlBlock1?: undefined;
|
|
2635
|
+
htmlBlock2?: undefined;
|
|
2636
|
+
htmlBlock3?: undefined;
|
|
2637
|
+
cms?: undefined;
|
|
2638
|
+
} | {
|
|
2639
|
+
skuIsNew: {
|
|
2640
|
+
skus: never[];
|
|
2641
|
+
isDisplay: boolean;
|
|
2642
|
+
title: {
|
|
2643
|
+
fr: string;
|
|
2644
|
+
en: string;
|
|
2645
|
+
es: string;
|
|
2646
|
+
};
|
|
2647
|
+
};
|
|
2648
|
+
slider?: undefined;
|
|
2649
|
+
categories?: undefined;
|
|
2650
|
+
categories4x1?: undefined;
|
|
2651
|
+
cmscategories?: undefined;
|
|
2652
|
+
skuIsBestSeller?: undefined;
|
|
2653
|
+
skuIsSelection1?: undefined;
|
|
2654
|
+
skuIsSelection2?: undefined;
|
|
2655
|
+
skuIsPromotion?: undefined;
|
|
2656
|
+
htmlBlock1?: undefined;
|
|
2657
|
+
htmlBlock2?: undefined;
|
|
2658
|
+
htmlBlock3?: undefined;
|
|
2659
|
+
cms?: undefined;
|
|
2660
|
+
} | {
|
|
2661
|
+
skuIsBestSeller: {
|
|
2662
|
+
skus: never[];
|
|
2663
|
+
isDisplay: boolean;
|
|
2664
|
+
};
|
|
2665
|
+
slider?: undefined;
|
|
2666
|
+
categories?: undefined;
|
|
2667
|
+
categories4x1?: undefined;
|
|
2668
|
+
cmscategories?: undefined;
|
|
2669
|
+
skuIsNew?: undefined;
|
|
2670
|
+
skuIsSelection1?: undefined;
|
|
2671
|
+
skuIsSelection2?: undefined;
|
|
2672
|
+
skuIsPromotion?: undefined;
|
|
2673
|
+
htmlBlock1?: undefined;
|
|
2674
|
+
htmlBlock2?: undefined;
|
|
2675
|
+
htmlBlock3?: undefined;
|
|
2676
|
+
cms?: undefined;
|
|
2677
|
+
} | {
|
|
2678
|
+
skuIsSelection1: {
|
|
2679
|
+
skus: never[];
|
|
2680
|
+
isDisplay: boolean;
|
|
2681
|
+
title: {
|
|
2682
|
+
fr: string;
|
|
2683
|
+
en: string;
|
|
2684
|
+
es: string;
|
|
2685
|
+
};
|
|
2686
|
+
};
|
|
2687
|
+
slider?: undefined;
|
|
2688
|
+
categories?: undefined;
|
|
2689
|
+
categories4x1?: undefined;
|
|
2690
|
+
cmscategories?: undefined;
|
|
2691
|
+
skuIsNew?: undefined;
|
|
2692
|
+
skuIsBestSeller?: undefined;
|
|
2693
|
+
skuIsSelection2?: undefined;
|
|
2694
|
+
skuIsPromotion?: undefined;
|
|
2695
|
+
htmlBlock1?: undefined;
|
|
2696
|
+
htmlBlock2?: undefined;
|
|
2697
|
+
htmlBlock3?: undefined;
|
|
2698
|
+
cms?: undefined;
|
|
2699
|
+
} | {
|
|
2700
|
+
skuIsSelection2: {
|
|
2701
|
+
skus: never[];
|
|
2702
|
+
isDisplay: boolean;
|
|
2703
|
+
title: {
|
|
2704
|
+
fr: string;
|
|
2705
|
+
en: string;
|
|
2706
|
+
es: string;
|
|
2707
|
+
};
|
|
2708
|
+
};
|
|
2709
|
+
slider?: undefined;
|
|
2710
|
+
categories?: undefined;
|
|
2711
|
+
categories4x1?: undefined;
|
|
2712
|
+
cmscategories?: undefined;
|
|
2713
|
+
skuIsNew?: undefined;
|
|
2714
|
+
skuIsBestSeller?: undefined;
|
|
2715
|
+
skuIsSelection1?: undefined;
|
|
2716
|
+
skuIsPromotion?: undefined;
|
|
2717
|
+
htmlBlock1?: undefined;
|
|
2718
|
+
htmlBlock2?: undefined;
|
|
2719
|
+
htmlBlock3?: undefined;
|
|
2720
|
+
cms?: undefined;
|
|
2721
|
+
} | {
|
|
2722
|
+
skuIsPromotion: {
|
|
2723
|
+
isDisplay: boolean;
|
|
2724
|
+
};
|
|
2725
|
+
slider?: undefined;
|
|
2726
|
+
categories?: undefined;
|
|
2727
|
+
categories4x1?: undefined;
|
|
2728
|
+
cmscategories?: undefined;
|
|
2729
|
+
skuIsNew?: undefined;
|
|
2730
|
+
skuIsBestSeller?: undefined;
|
|
2731
|
+
skuIsSelection1?: undefined;
|
|
2732
|
+
skuIsSelection2?: undefined;
|
|
2733
|
+
htmlBlock1?: undefined;
|
|
2734
|
+
htmlBlock2?: undefined;
|
|
2735
|
+
htmlBlock3?: undefined;
|
|
2736
|
+
cms?: undefined;
|
|
2737
|
+
} | {
|
|
2738
|
+
htmlBlock1: {
|
|
2739
|
+
content: string;
|
|
2740
|
+
isDisplay: boolean;
|
|
2741
|
+
};
|
|
2742
|
+
slider?: undefined;
|
|
2743
|
+
categories?: undefined;
|
|
2744
|
+
categories4x1?: undefined;
|
|
2745
|
+
cmscategories?: undefined;
|
|
2746
|
+
skuIsNew?: undefined;
|
|
2747
|
+
skuIsBestSeller?: undefined;
|
|
2748
|
+
skuIsSelection1?: undefined;
|
|
2749
|
+
skuIsSelection2?: undefined;
|
|
2750
|
+
skuIsPromotion?: undefined;
|
|
2751
|
+
htmlBlock2?: undefined;
|
|
2752
|
+
htmlBlock3?: undefined;
|
|
2753
|
+
cms?: undefined;
|
|
2754
|
+
} | {
|
|
2755
|
+
htmlBlock2: {
|
|
2756
|
+
content: string;
|
|
2757
|
+
isDisplay: boolean;
|
|
2758
|
+
};
|
|
2759
|
+
slider?: undefined;
|
|
2760
|
+
categories?: undefined;
|
|
2761
|
+
categories4x1?: undefined;
|
|
2762
|
+
cmscategories?: undefined;
|
|
2763
|
+
skuIsNew?: undefined;
|
|
2764
|
+
skuIsBestSeller?: undefined;
|
|
2765
|
+
skuIsSelection1?: undefined;
|
|
2766
|
+
skuIsSelection2?: undefined;
|
|
2767
|
+
skuIsPromotion?: undefined;
|
|
2768
|
+
htmlBlock1?: undefined;
|
|
2769
|
+
htmlBlock3?: undefined;
|
|
2770
|
+
cms?: undefined;
|
|
2771
|
+
} | {
|
|
2772
|
+
htmlBlock3: {
|
|
2773
|
+
content: string;
|
|
2774
|
+
isDisplay: boolean;
|
|
2775
|
+
};
|
|
2776
|
+
slider?: undefined;
|
|
2777
|
+
categories?: undefined;
|
|
2778
|
+
categories4x1?: undefined;
|
|
2779
|
+
cmscategories?: undefined;
|
|
2780
|
+
skuIsNew?: undefined;
|
|
2781
|
+
skuIsBestSeller?: undefined;
|
|
2782
|
+
skuIsSelection1?: undefined;
|
|
2783
|
+
skuIsSelection2?: undefined;
|
|
2784
|
+
skuIsPromotion?: undefined;
|
|
2785
|
+
htmlBlock1?: undefined;
|
|
2786
|
+
htmlBlock2?: undefined;
|
|
2787
|
+
cms?: undefined;
|
|
2788
|
+
} | {
|
|
2789
|
+
cms: {
|
|
2790
|
+
isDisplay: boolean;
|
|
2791
|
+
cmsPageGuid: string;
|
|
2792
|
+
};
|
|
2793
|
+
slider?: undefined;
|
|
2794
|
+
categories?: undefined;
|
|
2795
|
+
categories4x1?: undefined;
|
|
2796
|
+
cmscategories?: undefined;
|
|
2797
|
+
skuIsNew?: undefined;
|
|
2798
|
+
skuIsBestSeller?: undefined;
|
|
2799
|
+
skuIsSelection1?: undefined;
|
|
2800
|
+
skuIsSelection2?: undefined;
|
|
2801
|
+
skuIsPromotion?: undefined;
|
|
2802
|
+
htmlBlock1?: undefined;
|
|
2803
|
+
htmlBlock2?: undefined;
|
|
2804
|
+
htmlBlock3?: undefined;
|
|
2805
|
+
})[];
|
|
2806
|
+
static: string;
|
|
2807
|
+
build: {};
|
|
2808
|
+
};
|
|
2809
|
+
detail: {
|
|
2810
|
+
images: {
|
|
2811
|
+
backgroundColor: string;
|
|
2812
|
+
items: never[];
|
|
2813
|
+
};
|
|
2814
|
+
description: {
|
|
2815
|
+
items: never[];
|
|
2816
|
+
backgroundColor: string;
|
|
2817
|
+
isDisplayOptions: boolean;
|
|
2818
|
+
isDisplayVariants: boolean;
|
|
2819
|
+
};
|
|
2820
|
+
extraInformationsHigher: {
|
|
2821
|
+
backgroundColor: string;
|
|
2822
|
+
isDisplayRelations: boolean;
|
|
2823
|
+
items: never[];
|
|
2824
|
+
};
|
|
2825
|
+
extraInformationsMain: {
|
|
2826
|
+
backgroundColor: string;
|
|
2827
|
+
table: {
|
|
2828
|
+
items: never[];
|
|
2829
|
+
isDisplayTable: boolean;
|
|
2830
|
+
isDisplayTableHeader: boolean;
|
|
2831
|
+
isDisplayColumnSkuName: boolean;
|
|
2832
|
+
isDisplayAttributeOnCell: boolean;
|
|
2833
|
+
};
|
|
2834
|
+
};
|
|
2835
|
+
extraInformationsLower: {
|
|
2836
|
+
items: never[];
|
|
2837
|
+
backgroundColor: string;
|
|
2838
|
+
useAccordionLayout: boolean;
|
|
2839
|
+
isDisplayRelations: boolean;
|
|
2840
|
+
};
|
|
2841
|
+
};
|
|
2842
|
+
footer: {
|
|
2843
|
+
columns: {
|
|
2844
|
+
backgroundColor: string;
|
|
2845
|
+
items: never[];
|
|
2846
|
+
title: {
|
|
2847
|
+
fr: string;
|
|
2848
|
+
en: string;
|
|
2849
|
+
es: string;
|
|
2850
|
+
};
|
|
2851
|
+
};
|
|
2852
|
+
socialNetwork: {
|
|
2853
|
+
facebook: string;
|
|
2854
|
+
linkedin: string;
|
|
2855
|
+
twitter: string;
|
|
2856
|
+
instagram: string;
|
|
2857
|
+
youtube: string;
|
|
2858
|
+
email: string;
|
|
2859
|
+
};
|
|
2860
|
+
script: string;
|
|
2861
|
+
};
|
|
2862
|
+
header: {
|
|
2863
|
+
info: {
|
|
2864
|
+
isDisplay: boolean;
|
|
2865
|
+
backgroundColor: string;
|
|
2866
|
+
content: string;
|
|
2867
|
+
};
|
|
2868
|
+
logo: never[];
|
|
2869
|
+
logoResponsive: never[];
|
|
2870
|
+
menu: {
|
|
2871
|
+
backgroundColor: string;
|
|
2872
|
+
isDisplayOurProducts: boolean;
|
|
2873
|
+
items: never[];
|
|
2874
|
+
};
|
|
2875
|
+
seo: {
|
|
2876
|
+
title: string;
|
|
2877
|
+
metaDescription: string;
|
|
2878
|
+
home: {
|
|
2879
|
+
isActive: boolean;
|
|
2880
|
+
};
|
|
2881
|
+
detail: {
|
|
2882
|
+
isActive: boolean;
|
|
2883
|
+
};
|
|
2884
|
+
global: {
|
|
2885
|
+
isActive: boolean;
|
|
2886
|
+
};
|
|
2887
|
+
overview: {
|
|
2888
|
+
isActive: boolean;
|
|
2889
|
+
};
|
|
2890
|
+
googleAnalytics: string;
|
|
2891
|
+
};
|
|
2892
|
+
script: string;
|
|
2893
|
+
};
|
|
2894
|
+
setting: {
|
|
2895
|
+
dam: {
|
|
2896
|
+
isDisplayDam: boolean;
|
|
2897
|
+
};
|
|
2898
|
+
language: string;
|
|
2899
|
+
languages: string[];
|
|
2900
|
+
mode: string;
|
|
2901
|
+
modeCatalogues: string;
|
|
2902
|
+
signIn: string;
|
|
2903
|
+
signUp: string;
|
|
2904
|
+
sso: {
|
|
2905
|
+
clientID: string;
|
|
2906
|
+
tenantID: string;
|
|
2907
|
+
};
|
|
2908
|
+
customerArea: {
|
|
2909
|
+
disableEditBilling: boolean;
|
|
2910
|
+
disableEditShipping: boolean;
|
|
2911
|
+
};
|
|
2912
|
+
accounts: {
|
|
2913
|
+
items: never[];
|
|
2914
|
+
};
|
|
2915
|
+
eCommerce: {
|
|
2916
|
+
selected: boolean;
|
|
2917
|
+
quote: boolean;
|
|
2918
|
+
downloadExcelOrder: boolean;
|
|
2919
|
+
minimumOrder: number;
|
|
2920
|
+
basket: {
|
|
2921
|
+
items: never[];
|
|
2922
|
+
};
|
|
2923
|
+
};
|
|
2924
|
+
prices: {
|
|
2925
|
+
isDisplayPrice: boolean;
|
|
2926
|
+
isTTC: boolean;
|
|
2927
|
+
};
|
|
2928
|
+
suppliers: {
|
|
2929
|
+
isDisplaySupplier: boolean;
|
|
2930
|
+
};
|
|
2931
|
+
stocks: {
|
|
2932
|
+
isControlStock: boolean;
|
|
2933
|
+
isDisplayStock: boolean;
|
|
2934
|
+
isHideProductsOutStock: boolean;
|
|
2935
|
+
};
|
|
2936
|
+
baskets: {
|
|
2937
|
+
isQuicklyBasketAdd: boolean;
|
|
2938
|
+
};
|
|
2939
|
+
mail: {
|
|
2940
|
+
setting: {
|
|
2941
|
+
smtpHost: string;
|
|
2942
|
+
smtpPort: number;
|
|
2943
|
+
smtpUsername: string;
|
|
2944
|
+
smtpPassword: string;
|
|
2945
|
+
smtpSsl: boolean;
|
|
2946
|
+
};
|
|
2947
|
+
send: string;
|
|
2948
|
+
receiveContact: string;
|
|
2949
|
+
receiveOrder: string;
|
|
2950
|
+
content: {
|
|
2951
|
+
order: {
|
|
2952
|
+
message: {
|
|
2953
|
+
fr: string;
|
|
2954
|
+
en: string;
|
|
2955
|
+
es: string;
|
|
2956
|
+
};
|
|
2957
|
+
};
|
|
2958
|
+
quote: {
|
|
2959
|
+
message: {
|
|
2960
|
+
fr: string;
|
|
2961
|
+
en: string;
|
|
2962
|
+
es: string;
|
|
2963
|
+
};
|
|
2964
|
+
};
|
|
2965
|
+
};
|
|
2966
|
+
footer: {
|
|
2967
|
+
address: {
|
|
2968
|
+
entitled: string;
|
|
2969
|
+
address: string;
|
|
2970
|
+
address2: string;
|
|
2971
|
+
mail: string;
|
|
2972
|
+
phone: string;
|
|
2973
|
+
city: string;
|
|
2974
|
+
postalCode: string;
|
|
2975
|
+
country: string;
|
|
2976
|
+
};
|
|
2977
|
+
};
|
|
2978
|
+
};
|
|
2979
|
+
};
|
|
2980
|
+
overview: {
|
|
2981
|
+
selected: string;
|
|
2982
|
+
thumbnail: {
|
|
2983
|
+
withPictos: boolean;
|
|
2984
|
+
};
|
|
2985
|
+
table: {};
|
|
2986
|
+
filters: string;
|
|
2987
|
+
isDisplayPrice: boolean;
|
|
2988
|
+
nbskus: number;
|
|
2989
|
+
};
|
|
2990
|
+
personalization: {
|
|
2991
|
+
buttons: {
|
|
2992
|
+
backgroundColor: string;
|
|
2993
|
+
secondary: {
|
|
2994
|
+
backgroundColor: string;
|
|
2995
|
+
};
|
|
2996
|
+
body: {
|
|
2997
|
+
backgroundColor: string;
|
|
2998
|
+
};
|
|
2999
|
+
};
|
|
3000
|
+
};
|
|
3001
|
+
};
|
|
3002
|
+
constructor(http: HttpClient, settings: SettingsService, _webSocket: websocketService);
|
|
3003
|
+
setTemplate(channelGuid: string, templateGuid: string): rxjs.Observable<Object>;
|
|
3004
|
+
publishTemplate(channelGuid: string): rxjs.Observable<Object>;
|
|
3005
|
+
getAllChannels(): rxjs.Observable<Object>;
|
|
3006
|
+
getChannelByGuid(channelGuid: string): rxjs.Observable<Object>;
|
|
3007
|
+
getAllChannelTemplate(channelGuid: string): rxjs.Observable<Object>;
|
|
3008
|
+
getChannelTemplateByGuid(channelGuid: string, templateGuid: string): rxjs.Observable<Object>;
|
|
3009
|
+
getAllCountries(): rxjs.Observable<Object>;
|
|
3010
|
+
getallCountriesOnChannel(channelGuid: string): rxjs.Observable<Object>;
|
|
3011
|
+
getStateByCountry(country: string): rxjs.Observable<Object>;
|
|
3012
|
+
getAllTransportersByCountry(country: string): rxjs.Observable<Object>;
|
|
3013
|
+
getLanguageAvailable(): rxjs.Observable<Object>;
|
|
3014
|
+
getAllPrivateTransporters(channelGuid: string): rxjs.Observable<Object>;
|
|
3015
|
+
getTransportersAvailableByCountryExpedition(countryDestination: string, countryExpedition: string): rxjs.Observable<Object>;
|
|
3016
|
+
getOnePrivateTransporter(guid: string): rxjs.Observable<Object>;
|
|
3017
|
+
getAllCountriesAvailableByTransporter(transporter: string, countryExpedition: string): rxjs.Observable<Object>;
|
|
3018
|
+
getcountriesSort(tabCountries: any, language: any): rxjs.Observable<Object>;
|
|
3019
|
+
getTransporterExist(name: string): rxjs.Observable<Object>;
|
|
3020
|
+
getTransporterCostOfZone(guid: string, nameZone: string): rxjs.Observable<Object>;
|
|
3021
|
+
getExpeditionCountryByChannel(guid: string): rxjs.Observable<Object>;
|
|
3022
|
+
getTransporterZone(guid: string): rxjs.Observable<Object>;
|
|
3023
|
+
getAllItems(channelGuid: string, type: string, attributeIsVariant?: boolean): rxjs.Observable<Object>;
|
|
3024
|
+
getAllCheckoutMode(channelGuid: string): rxjs.Observable<Object>;
|
|
3025
|
+
getCheckoutMode(channelGuid: string, checkoutModeGuid: any): rxjs.Observable<Object>;
|
|
3026
|
+
addCountryOnChannel(channelGuid: string, countriesGuidArray: any): rxjs.Observable<Object>;
|
|
3027
|
+
createPrivateTransporterCost(transporterCostObject: any): rxjs.Observable<Object>;
|
|
3028
|
+
setRelationCountryChannelDefault(channelGuid: string, countryGuid: string): rxjs.Observable<Object>;
|
|
3029
|
+
createTransporter(transporterObject: any): rxjs.Observable<Object>;
|
|
3030
|
+
createTransporterZone(transporterZoneObject: any): rxjs.Observable<Object>;
|
|
3031
|
+
createChannel(channelObject: any): rxjs.Observable<Object>;
|
|
3032
|
+
createChannelPrestashop1(channelObject: any): rxjs.Observable<Object>;
|
|
3033
|
+
createChannelPrestashop2(channelObject: any): rxjs.Observable<Object>;
|
|
3034
|
+
createChannelPrestashop3(channelObject: any): rxjs.Observable<Object>;
|
|
3035
|
+
createChannelPrestashop4(channelObject: any): rxjs.Observable<Object>;
|
|
3036
|
+
addCheckoutMode(channelGuid: string, checkoutModeTitle: any): rxjs.Observable<Object>;
|
|
3037
|
+
moveCheckoutModeOrder(channelGuid: string, checkoutModeGuid: any, pos: number): rxjs.Observable<Object>;
|
|
3038
|
+
updateCountryOnChannelField(channelGuid: string, countryGuid: string, fieldName: string, fieldValue: any): rxjs.Observable<Object>;
|
|
3039
|
+
updateTransportZoneField(transportZoneObject: any): rxjs.Observable<Object>;
|
|
3040
|
+
modifyTransporterById(transporterObject: any): rxjs.Observable<Object>;
|
|
3041
|
+
updateTransporterField(transporterObject: any): rxjs.Observable<Object>;
|
|
3042
|
+
updateChannels(channelObject: any): rxjs.Observable<Object>;
|
|
3043
|
+
updateChannelsTemplate(channelTemplateObject: any): rxjs.Observable<Object>;
|
|
3044
|
+
updateChannelsTemplateField(channelGuid: string, templateGuid: string, fieldName: string, fieldValue: any): rxjs.Observable<Object> | undefined;
|
|
3045
|
+
restoreRelationTemplateChannelPlanWithWebsitePlan(channelGuid: string, templateGuid: string): rxjs.Observable<Object>;
|
|
3046
|
+
syncRelationTemplateChannelPlan(channelGuid: string, templateGuid: string, fieldValue: any): rxjs.Observable<Object>;
|
|
3047
|
+
updateCheckoutModeField(channelGuid: string, checkoutModeGuid: string, fieldName: string, fieldValue: any): rxjs.Observable<Object>;
|
|
3048
|
+
deleteCountryOnChannel(channelGuid: string, countryGuid: string): rxjs.Observable<Object>;
|
|
3049
|
+
deleteTransporterPrivateCostOfZone(guid: string, nameZone: string): rxjs.Observable<Object>;
|
|
3050
|
+
deleteTransporterById(guid: string): rxjs.Observable<Object>;
|
|
3051
|
+
deletePrivateTransporterZone(nameZone: string, guid: string): rxjs.Observable<Object>;
|
|
3052
|
+
deleteChannel(channelGuid: string): rxjs.Observable<Object>;
|
|
3053
|
+
deleteChannels(listingChannelToDelete: any): rxjs.Observable<Object>;
|
|
3054
|
+
deleteCheckoutMode(channelGuid: string, checkoutModeGuid: string): rxjs.Observable<Object>;
|
|
3055
|
+
testMail(channelGuid: string, recipientEmail: string): rxjs.Observable<Object>;
|
|
3056
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChannelsService, never>;
|
|
3057
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ChannelsService>;
|
|
3058
|
+
}
|
|
3059
|
+
|
|
3060
|
+
declare class CmsService {
|
|
3061
|
+
private http;
|
|
3062
|
+
private _settingsService;
|
|
3063
|
+
constructor(http: HttpClient, _settingsService: SettingsService);
|
|
3064
|
+
getAllCategories(channelGuid: string): rxjs.Observable<Object>;
|
|
3065
|
+
newCategory(categoryObject: any, channelGuid: string): rxjs.Observable<Object>;
|
|
3066
|
+
updateCategory(categoryObject: any, channelGuid: string): rxjs.Observable<Object>;
|
|
3067
|
+
deleteCategories(listCategories: Array<any>, channelGuid: string): rxjs.Observable<Object>;
|
|
3068
|
+
getCategoryByCategoryGuid(cmsCategoryGuid: string, channelGuid: string): rxjs.Observable<Object>;
|
|
3069
|
+
deleteCategory(cmsCategoryGuid: string, channelGuid: string): rxjs.Observable<Object>;
|
|
3070
|
+
updateCategoryField(cmsCategoryGuid: string, fieldName: string, fieldValue: any, channelGuid: string): rxjs.Observable<Object>;
|
|
3071
|
+
updateCategoryOrder(cmsCategoryGuid: string, orderValue: number, channelGuid: string): rxjs.Observable<Object>;
|
|
3072
|
+
getAllPagesByCmsCategoryGuid(cmsCategoryGuid: string, channelGuid: string): rxjs.Observable<Object>;
|
|
3073
|
+
newPage(pageObject: any, channelGuid: string, cmsCategoryGuid: string): rxjs.Observable<Object>;
|
|
3074
|
+
updatePage(pageObject: any, channelGuid: string, cmsCategoryGuid: string): rxjs.Observable<Object>;
|
|
3075
|
+
deletePages(listPage: Array<any>, channelGuid: string, cmsCategoryGuid: string): rxjs.Observable<Object>;
|
|
3076
|
+
getPageByCmsGuid(cmsGuid: string, channelGuid: string, cmsCategoryGuid: string): rxjs.Observable<Object>;
|
|
3077
|
+
deletePage(cmsGuid: string, channelGuid: string, cmsCategoryGuid: string): rxjs.Observable<Object>;
|
|
3078
|
+
updatePageField(cmsGuid: string, fieldName: string, fieldValue: any, channelGuid: string, cmsCategoryGuid: string): rxjs.Observable<Object>;
|
|
3079
|
+
updatePageOrder(cmsGuid: string, orderValue: number, channelGuid: string, cmsCategoryGuid: string): rxjs.Observable<Object>;
|
|
3080
|
+
uploadFile(cmsGuid: string, formData: FormData, channelGuid: string): rxjs.Observable<Object>;
|
|
3081
|
+
duplicateCmsPage(channelGuid: string, cmsCategoryGuid: string, cmsPageGuid: string, dest_channelGuid: string, dest_cmsCategoryGuid: string, dest_cmsPageRoute: string): rxjs.Observable<Object>;
|
|
3082
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CmsService, never>;
|
|
3083
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CmsService>;
|
|
3084
|
+
}
|
|
3085
|
+
|
|
3086
|
+
declare class PromotionsService {
|
|
3087
|
+
private http;
|
|
3088
|
+
private _settings;
|
|
3089
|
+
constructor(http: HttpClient, _settings: SettingsService);
|
|
3090
|
+
getAllPromotions(channelGuid: any, start: any, limit: any, type: any, accountGuid: any, sort: any, direction: any): rxjs.Observable<Object>;
|
|
3091
|
+
createPromotion(channelGuid: any, promotion: any): rxjs.Observable<Object>;
|
|
3092
|
+
updatePromotion(channelGuid: any, promotion: any): rxjs.Observable<Object>;
|
|
3093
|
+
updateFieldPromotion(promotionGuid: string, channelGuid: string, fieldName: string, fieldValue: any): rxjs.Observable<Object>;
|
|
3094
|
+
deletePromotion(promotionGuid: string, channelGuid: string): rxjs.Observable<Object>;
|
|
3095
|
+
deletePromotions(channelGuid: string, tabGuid: any): rxjs.Observable<Object>;
|
|
3096
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PromotionsService, never>;
|
|
3097
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PromotionsService>;
|
|
3098
|
+
}
|
|
3099
|
+
|
|
1427
3100
|
interface PhysicalPath {
|
|
1428
3101
|
key: string;
|
|
1429
3102
|
value: string;
|
|
@@ -1505,6 +3178,23 @@ declare class NotificationServiceService {
|
|
|
1505
3178
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationServiceService>;
|
|
1506
3179
|
}
|
|
1507
3180
|
|
|
3181
|
+
declare class QuotesService {
|
|
3182
|
+
private http;
|
|
3183
|
+
private _settingsService;
|
|
3184
|
+
constructor(http: HttpClient, _settingsService: SettingsService);
|
|
3185
|
+
getQuotes(limit: any, start: any): rxjs.Observable<Object>;
|
|
3186
|
+
getStatus(type?: any): rxjs.Observable<Object>;
|
|
3187
|
+
getQuoteByGuid(): rxjs.Observable<Object>;
|
|
3188
|
+
getQuotesWithSearchWithoutStatus(limit: any, start: any, searchWord: any, direction: any): rxjs.Observable<Object>;
|
|
3189
|
+
getQuotesWithSearch(limit: any, start: any, searchWord: any, status: any, direction: any): rxjs.Observable<Object>;
|
|
3190
|
+
getQuotesWithSearchAndSort(limit: any, start: any, searchWord: any, sortColumn: any, direction: any, status: any): rxjs.Observable<Object>;
|
|
3191
|
+
getQuotePdf(idOrder: string): rxjs.Observable<Object>;
|
|
3192
|
+
sendMailNoticeAfterQuotes(object: any): rxjs.Observable<Object>;
|
|
3193
|
+
regeneratePDF(object: any): rxjs.Observable<Object>;
|
|
3194
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QuotesService, never>;
|
|
3195
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<QuotesService>;
|
|
3196
|
+
}
|
|
3197
|
+
|
|
1508
3198
|
declare class ThumbnailService {
|
|
1509
3199
|
/**
|
|
1510
3200
|
* Generates a thumbnail from an SVG string.
|
|
@@ -1540,11 +3230,10 @@ declare class GenerationService {
|
|
|
1540
3230
|
}
|
|
1541
3231
|
|
|
1542
3232
|
declare class ProductSheetsService {
|
|
1543
|
-
private auth;
|
|
1544
3233
|
private _settingsService;
|
|
1545
3234
|
private http;
|
|
1546
3235
|
private _webSocket;
|
|
1547
|
-
constructor(
|
|
3236
|
+
constructor(_settingsService: SettingsService, http: HttpClient, _webSocket: websocketService);
|
|
1548
3237
|
getProductSheetsByAssetGuid(assetGuid: string): rxjs.Observable<Object>;
|
|
1549
3238
|
getProductSheetLines(productSheetGuid: string, start?: number, limit?: number, summary?: boolean): rxjs.Observable<Object>;
|
|
1550
3239
|
getProductSheetColumns(assetGuid: string): rxjs.Observable<Object>;
|
|
@@ -1565,6 +3254,15 @@ declare class ProductSheetsService {
|
|
|
1565
3254
|
static ɵprov: i0.ɵɵInjectableDeclaration<ProductSheetsService>;
|
|
1566
3255
|
}
|
|
1567
3256
|
|
|
3257
|
+
declare enum ProjectType {
|
|
3258
|
+
STATIC = "static",
|
|
3259
|
+
DYNAMIC = "dynamic",
|
|
3260
|
+
YOUBOOKY = "youbooky",
|
|
3261
|
+
DOCUMENT = "document",
|
|
3262
|
+
CATALOGUE = "catalogue",
|
|
3263
|
+
TECHNICAL_SHEET = "technicalSheet"
|
|
3264
|
+
}
|
|
3265
|
+
|
|
1568
3266
|
interface PublicationPageProps {
|
|
1569
3267
|
publicationGuid?: string;
|
|
1570
3268
|
pageId?: number;
|
|
@@ -2074,8 +3772,10 @@ declare class Publication {
|
|
|
2074
3772
|
declare enum PublicationDataType {
|
|
2075
3773
|
PRODUCT = "PRODUCT",
|
|
2076
3774
|
LINEBREAK = "LINEBREAK",
|
|
2077
|
-
PAGEBREAK = "PAGEBREAK"
|
|
3775
|
+
PAGEBREAK = "PAGEBREAK",
|
|
3776
|
+
CALLOUT = "CALLOUT"
|
|
2078
3777
|
}
|
|
3778
|
+
|
|
2079
3779
|
interface PublicationDataProps {
|
|
2080
3780
|
attributePublication?: any[];
|
|
2081
3781
|
skus?: any[];
|
|
@@ -2104,6 +3804,7 @@ interface PublicationDataProps {
|
|
|
2104
3804
|
splitVariantTable?: boolean;
|
|
2105
3805
|
exist?: boolean;
|
|
2106
3806
|
type?: PublicationDataType | string;
|
|
3807
|
+
callout?: string;
|
|
2107
3808
|
}
|
|
2108
3809
|
declare class PublicationData {
|
|
2109
3810
|
attributePublication?: any[];
|
|
@@ -2133,6 +3834,7 @@ declare class PublicationData {
|
|
|
2133
3834
|
private _splitVariantTable;
|
|
2134
3835
|
private _exist;
|
|
2135
3836
|
private _type;
|
|
3837
|
+
private _callout;
|
|
2136
3838
|
constructor(data?: PublicationDataProps);
|
|
2137
3839
|
get publicationGuid(): string;
|
|
2138
3840
|
set publicationGuid(value: string);
|
|
@@ -2178,12 +3880,18 @@ declare class PublicationData {
|
|
|
2178
3880
|
set exist(value: boolean);
|
|
2179
3881
|
get type(): string;
|
|
2180
3882
|
set type(value: string);
|
|
3883
|
+
get callout(): string;
|
|
3884
|
+
set callout(value: string);
|
|
3885
|
+
get publicationDataCallout(): string;
|
|
3886
|
+
set publicationDataCallout(value: string);
|
|
2181
3887
|
get isLineBreak(): boolean;
|
|
2182
3888
|
get isPageBreak(): boolean;
|
|
3889
|
+
get isCallout(): boolean;
|
|
2183
3890
|
get isBreak(): boolean;
|
|
2184
3891
|
get isProduct(): boolean;
|
|
2185
3892
|
static createLineBreak(data?: Partial<PublicationDataProps>): PublicationData;
|
|
2186
3893
|
static createPageBreak(data?: Partial<PublicationDataProps>): PublicationData;
|
|
3894
|
+
static createCallout(templateGuid: string, gabaritName: string, data?: Partial<PublicationDataProps>): PublicationData;
|
|
2187
3895
|
toJSON(): {
|
|
2188
3896
|
publicationGuid: string;
|
|
2189
3897
|
pageId: number;
|
|
@@ -2207,6 +3915,10 @@ declare class PublicationData {
|
|
|
2207
3915
|
splitVariantTable: boolean;
|
|
2208
3916
|
exist: boolean;
|
|
2209
3917
|
type: string;
|
|
3918
|
+
PublicationDataType: string;
|
|
3919
|
+
callout: string;
|
|
3920
|
+
publicationDataCallout: string;
|
|
3921
|
+
PublicationDataCallout: string;
|
|
2210
3922
|
attributePublication: any[] | undefined;
|
|
2211
3923
|
skus: any[] | undefined;
|
|
2212
3924
|
priceObject: any;
|
|
@@ -2338,15 +4050,14 @@ declare class Template {
|
|
|
2338
4050
|
}
|
|
2339
4051
|
|
|
2340
4052
|
declare class TemplatesService {
|
|
2341
|
-
private auth;
|
|
2342
4053
|
private _settingsService;
|
|
2343
4054
|
private http;
|
|
2344
4055
|
private _webSocket;
|
|
2345
|
-
constructor(
|
|
4056
|
+
constructor(_settingsService: SettingsService, http: HttpClient, _webSocket: websocketService);
|
|
2346
4057
|
getTemplate(templateGuid: string): Observable<Template>;
|
|
2347
4058
|
getTemplateDimensions(): Observable<Object>;
|
|
2348
4059
|
templateSetDefault(assetGuid: string, defaultType: string, defaultGuid: string): Observable<Object>;
|
|
2349
|
-
createTemplate(folderGuid: string, templateName: string, templateUnit?: string, templateProductSheetAssetGuid?: string): Observable<Object>;
|
|
4060
|
+
createTemplate(folderGuid: string, templateName: string, templateUnit?: string, templateProductSheetAssetGuid?: string, assetType?: string, additionalOptions?: any): Observable<Object>;
|
|
2350
4061
|
duplicateTemplate(duplicateGuid: string, name: string): Observable<Object>;
|
|
2351
4062
|
updateFieldForTemplate(templateGuid: string, fieldName: string, fieldValue: string): Observable<Object>;
|
|
2352
4063
|
migrateTemplate(assetGuid: string): Observable<Object>;
|
|
@@ -2494,11 +4205,10 @@ declare class PublicationTemplate {
|
|
|
2494
4205
|
}
|
|
2495
4206
|
|
|
2496
4207
|
declare class PublicationsTemplatesService {
|
|
2497
|
-
private auth;
|
|
2498
4208
|
private _settingsService;
|
|
2499
4209
|
private http;
|
|
2500
4210
|
private _webSocket;
|
|
2501
|
-
constructor(
|
|
4211
|
+
constructor(_settingsService: SettingsService, http: HttpClient, _webSocket: websocketService);
|
|
2502
4212
|
getPublicationTemplate(publicationTemplateGuid: any): Observable<PublicationTemplate>;
|
|
2503
4213
|
getPublicationsTemplates(start: number, limit: number, searchWord?: string, typeSelected?: string, columnSort?: any, direction?: string, active?: boolean, delautTemplate?: boolean): Observable<Object>;
|
|
2504
4214
|
duplicatePublicationTemplate(name: string, duplicateGuid: string): Observable<Object>;
|
|
@@ -2514,6 +4224,14 @@ declare class PublicationsTemplatesService {
|
|
|
2514
4224
|
getTemplateProductBlocks(templateGuid: string): Observable<{
|
|
2515
4225
|
productBlocks: PublicationTemplate[];
|
|
2516
4226
|
}>;
|
|
4227
|
+
getTemplateCallouts(templateGuid: string): Observable<{
|
|
4228
|
+
callouts: PublicationTemplate[];
|
|
4229
|
+
}>;
|
|
4230
|
+
getPublicationsTemplatesByTemplateGuidAndType(templateGuid: string, type: string): Observable<{
|
|
4231
|
+
productBlocks?: PublicationTemplate[];
|
|
4232
|
+
callouts?: PublicationTemplate[];
|
|
4233
|
+
backgrounds?: PublicationTemplate[];
|
|
4234
|
+
}>;
|
|
2517
4235
|
getTemplateCoverpages(templateGuid: string): Observable<{
|
|
2518
4236
|
coverpages: PublicationTemplate[];
|
|
2519
4237
|
}>;
|
|
@@ -2539,7 +4257,7 @@ declare class DocumentsService {
|
|
|
2539
4257
|
getDocument(assetGuid: string): rxjs.Observable<Object>;
|
|
2540
4258
|
existDocument(assetGuid: string, version?: string): rxjs.Observable<Object>;
|
|
2541
4259
|
createDocument(assetName: string, folderGuid: string): rxjs.Observable<Object>;
|
|
2542
|
-
duplicateDocument(assetGuid: string, documentName: string): rxjs.Observable<Object>;
|
|
4260
|
+
duplicateDocument(assetGuid: string, documentName: string, publicationGuid?: string, folderGuid?: string): rxjs.Observable<Object>;
|
|
2543
4261
|
updateDocumentPagePosition(assetGuid: string, pageGuid: string, position: number): rxjs.Observable<Object>;
|
|
2544
4262
|
importDocumentFiles(assetGuid: string, overwrite: boolean, files: any[]): rxjs.Observable<Object>;
|
|
2545
4263
|
migrateDocument(assetGuid: string): rxjs.Observable<Object>;
|
|
@@ -2623,6 +4341,57 @@ declare class DocumentCommentService {
|
|
|
2623
4341
|
static ɵprov: i0.ɵɵInjectableDeclaration<DocumentCommentService>;
|
|
2624
4342
|
}
|
|
2625
4343
|
|
|
4344
|
+
declare class ColorsService {
|
|
4345
|
+
APP_COLORS: Record<string, string>;
|
|
4346
|
+
constructor();
|
|
4347
|
+
byName(name: string): string;
|
|
4348
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColorsService, never>;
|
|
4349
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ColorsService>;
|
|
4350
|
+
}
|
|
4351
|
+
|
|
4352
|
+
declare class SearchDamAssetsService {
|
|
4353
|
+
private http;
|
|
4354
|
+
private _settingsService;
|
|
4355
|
+
headers: any;
|
|
4356
|
+
queryUrl: string;
|
|
4357
|
+
trashbinFilter: string;
|
|
4358
|
+
constructor(http: HttpClient, _settingsService: SettingsService);
|
|
4359
|
+
search(terms: Observable<string>, stats: Observable<string>, folderType?: string, sort?: any): Observable<Object>;
|
|
4360
|
+
searchEntries(term: any, folderType: string, sortDirection: any): Observable<Object>;
|
|
4361
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SearchDamAssetsService, never>;
|
|
4362
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SearchDamAssetsService>;
|
|
4363
|
+
}
|
|
4364
|
+
|
|
4365
|
+
declare class DamAssetsProfilesService {
|
|
4366
|
+
private _settings;
|
|
4367
|
+
private http;
|
|
4368
|
+
private _webSocket;
|
|
4369
|
+
constructor(_settings: SettingsService, http: HttpClient, _webSocket: websocketService);
|
|
4370
|
+
getProfilesAssets(start: any, limit: any, search: any, language: any, direction: any): rxjs.Observable<Object>;
|
|
4371
|
+
getProfileAssets(profileAssetGuid: string): rxjs.Observable<Object>;
|
|
4372
|
+
createProfileAssets(profileAssetName: string, profileAssetExtension: string, profileAssetSizes: any): rxjs.Observable<Object>;
|
|
4373
|
+
updateProfileAssets(profileAssetGuid: string, profileAssetName: string, profileAssetExtension: string, profileAssetSizes: any): rxjs.Observable<Object>;
|
|
4374
|
+
updateProfileAsset(guid: string, fieldName: string, fieldValue: any): rxjs.Observable<Object>;
|
|
4375
|
+
deleteProfilesAssets(listingProfilesAssetsToDelete: any): rxjs.Observable<Object>;
|
|
4376
|
+
deleteProfileAsset(profileAssetGuid: string): rxjs.Observable<Object>;
|
|
4377
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DamAssetsProfilesService, never>;
|
|
4378
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DamAssetsProfilesService>;
|
|
4379
|
+
}
|
|
4380
|
+
|
|
4381
|
+
declare class DashboardService {
|
|
4382
|
+
private _settings;
|
|
4383
|
+
private http;
|
|
4384
|
+
constructor(_settings: SettingsService, http: HttpClient);
|
|
4385
|
+
getStatistics(statisticsObject?: any): rxjs.Observable<Object>;
|
|
4386
|
+
getChoices(line: number, language?: string): rxjs.Observable<Object>;
|
|
4387
|
+
getChoice(code: number): rxjs.Observable<Object>;
|
|
4388
|
+
putSchemas(schemas: any[], location: number, screenPosition: number): rxjs.Observable<Object>;
|
|
4389
|
+
getSchemasLocation(location: number): rxjs.Observable<Object>;
|
|
4390
|
+
getSchemas(): rxjs.Observable<Object>;
|
|
4391
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DashboardService, never>;
|
|
4392
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DashboardService>;
|
|
4393
|
+
}
|
|
4394
|
+
|
|
2626
4395
|
declare class StripeService {
|
|
2627
4396
|
private http;
|
|
2628
4397
|
private _settingsService;
|
|
@@ -2635,5 +4404,17 @@ declare class StripeService {
|
|
|
2635
4404
|
static ɵprov: i0.ɵɵInjectableDeclaration<StripeService>;
|
|
2636
4405
|
}
|
|
2637
4406
|
|
|
2638
|
-
|
|
2639
|
-
|
|
4407
|
+
declare class PresetsService {
|
|
4408
|
+
private http;
|
|
4409
|
+
private _settings;
|
|
4410
|
+
constructor(http: HttpClient, _settings: SettingsService);
|
|
4411
|
+
getPresets(context: string, type: string): rxjs.Observable<Object>;
|
|
4412
|
+
createPreset(presetContext: string, presetType: string, presetName: string, presetValue: any): rxjs.Observable<Object>;
|
|
4413
|
+
deletePreset(presetGuid: string): rxjs.Observable<Object>;
|
|
4414
|
+
updatePreset(presetGuid: string, presetContext: string, presetType: string, presetName: string, presetValue: any): rxjs.Observable<Object>;
|
|
4415
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PresetsService, never>;
|
|
4416
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PresetsService>;
|
|
4417
|
+
}
|
|
4418
|
+
|
|
4419
|
+
export { AccountsService, AllLanguagesService, AttributesService, AuthService, AuthTwoFactorService, BatchService, BomService, BomsitemsService, CataloguesService, CategoriesService, ChannelsService, CmsService, ColorsService, CompaniesService, CompanyService, CompletenessService, DEFAULT_PUBLICATION_STR, DEFAULT_TEMPLATEGUID, DamAssetsProfilesService, DamAssetsSelectionsService, DamAssetsService, DashboardService, Document, DocumentCommentService, DocumentsService, EasypiechartDirective, EcoTaxService, ExchangesConfigurationsService, ExportsService, FrameworkagreementsService, GenerationService, ImportsService, InformationsService, LocaleNumberPipe, LoginService, MappingsService, MasksService, MediaSelectionDeclinaisonService, MediaSelectionService, MenuService, NotificationServiceService, OpenAiService, OrdersService, OrganizationsService, PresetsService, PricesTaxService, ProductSheetsService, ProfilesService, ProjectType, PromotionsService, PromptsService, Publication, PublicationBreak, PublicationData, PublicationDataType, PublicationPage, PublicationTemplate, PublicationsService, PublicationsTemplatesService, QuotesService, ReportsService, RequestsService, RightsService, RoleService, RouterExtServiceService, RulesCompletenessService, SOLIDPEPPER_API_URL, SOLIDPEPPER_TOKEN_GETTER, SalersService, SearchDamAssetsService, SearchService, SearchsService, SettingsService, SidebarRightService, SkusDeclinaisonsService, SkusPricesService, SkusService, SkusSuppliersService, SkusTrackingService, StatusService, StocksService, StripeService, SuppliersService, TeamsService, Template, TemplatesService, ThumbnailService, TimeElapsedPipe, TranslateService, TranslatorService, UsersService, UtilsService, ViewsService, WorkflowsDesksService, WorkflowsGlobalStepsService, WorkflowsHistoricalService, WorkflowsRulesService, websocketService };
|
|
4420
|
+
export type { AttributeObject, AttributesGroup, AuthGroup, Bom, CategoryObject, Company, DocumentComment, DocumentProps, Mask, MaskName, Prompt, PublicationDataProps, PublicationPageProps, PublicationPagesResponse, PublicationProductsResponse, PublicationProps, PublicationTemplateProps, Supplier, TemplateProps };
|