@veloceapps/sdk 3.1.34 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/cms/vendor-map.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import * as angularCore from '@angular/core';
|
2
2
|
import * as angularForms from '@angular/forms';
|
3
|
-
import { CatalogApiService, DeltaApiService, DocumentAttachmentApiService, DocumentTemplatesApiService, QuoteApiService, RampApiService, SalesforceApiService } from '@veloce/api';
|
3
|
+
import { CatalogApiService, DeltaApiService, DocumentAttachmentApiService, DocumentTemplatesApiService, QuoteApiService, RampApiService, PicklistsApiService, SalesforceApiService } from '@veloce/api';
|
4
4
|
import { ConfigurationService, FlowConfigurationService, LineItemWorker, ProductImagesService, QuoteDraftService } from '@veloce/sdk/core';
|
5
5
|
import * as lodash from 'lodash';
|
6
6
|
import * as rxjs from 'rxjs';
|
@@ -68,6 +68,7 @@ export declare const vendorMap: {
|
|
68
68
|
RampApiService: typeof RampApiService;
|
69
69
|
CatalogApiService: typeof CatalogApiService;
|
70
70
|
DeltaApiService: typeof DeltaApiService;
|
71
|
+
PicklistsApiService: typeof PicklistsApiService;
|
71
72
|
};
|
72
73
|
'@angular/core': typeof angularCore;
|
73
74
|
'@angular/forms': typeof angularForms;
|
@@ -262,8 +263,8 @@ export declare const vendorMap: {
|
|
262
263
|
forEachRight<TString_1 extends string | null | undefined>(collection: TString_1, iteratee?: lodash.StringIterator<any> | undefined): TString_1;
|
263
264
|
forEachRight<T_95, TList_2 extends lodash.List<T_95> | null | undefined>(collection: TList_2 & (lodash.List<T_95> | null | undefined), iteratee?: lodash.ListIterator<T_95, any> | undefined): TList_2;
|
264
265
|
forEachRight<T_96 extends object>(collection: T_96 | null | undefined, iteratee?: lodash.ObjectIterator<T_96, any> | undefined): T_96 | null | undefined;
|
265
|
-
groupBy<T_120>(collection: lodash.List<T_120> | null | undefined, iteratee?: lodash.ValueIteratee<T_120> | undefined): lodash.Dictionary<
|
266
|
-
groupBy<T_121 extends object>(collection: T_121 | null | undefined, iteratee?: lodash.ValueIteratee<T_121[keyof T_121]> | undefined): lodash.Dictionary<
|
266
|
+
groupBy<T_120>(collection: lodash.List<T_120> | null | undefined, iteratee?: lodash.ValueIteratee<T_120> | undefined): lodash.Dictionary<T_120[]>;
|
267
|
+
groupBy<T_121 extends object>(collection: T_121 | null | undefined, iteratee?: lodash.ValueIteratee<T_121[keyof T_121]> | undefined): lodash.Dictionary<T_121[keyof T_121][]>;
|
267
268
|
includes<T_122>(collection: lodash.Dictionary<T_122> | lodash.NumericDictionary<T_122> | null | undefined, target: T_122, fromIndex?: number | undefined): boolean;
|
268
269
|
invokeMap(collection: object | null | undefined, methodName: string, ...args: any[]): any[];
|
269
270
|
invokeMap<TResult_13>(collection: object | null | undefined, method: (...args: any[]) => TResult_13, ...args: any[]): TResult_13[];
|
@@ -317,51 +318,52 @@ export declare const vendorMap: {
|
|
317
318
|
bindKey: lodash.FunctionBindKey;
|
318
319
|
curry: lodash.Curry;
|
319
320
|
curryRight: lodash.CurryRight;
|
320
|
-
debounce<T_163 extends (...args: any) => any>(func: T_163, wait
|
321
|
+
debounce<T_163 extends (...args: any) => any>(func: T_163, wait: number | undefined, options: lodash.DebounceSettingsLeading): lodash.DebouncedFuncLeading<T_163>;
|
322
|
+
debounce<T_164 extends (...args: any) => any>(func: T_164, wait?: number | undefined, options?: lodash.DebounceSettings | undefined): lodash.DebouncedFunc<T_164>;
|
321
323
|
defer(func: (...args: any[]) => any, ...args: any[]): number;
|
322
324
|
delay(func: (...args: any[]) => any, wait: number, ...args: any[]): number;
|
323
|
-
flip<
|
325
|
+
flip<T_165 extends (...args: any) => any>(func: T_165): T_165;
|
324
326
|
memoize: {
|
325
|
-
<
|
327
|
+
<T_166 extends (...args: any) => any>(func: T_166, resolver?: ((...args: Parameters<T_166>) => any) | undefined): T_166 & lodash.MemoizedFunction;
|
326
328
|
Cache: lodash.MapCacheConstructor;
|
327
329
|
};
|
328
|
-
negate<
|
329
|
-
once<
|
330
|
+
negate<T_167 extends any[]>(predicate: (...args: T_167) => boolean): (...args: T_167) => boolean;
|
331
|
+
once<T_168 extends (...args: any) => any>(func: T_168): T_168;
|
330
332
|
overArgs(func: (...args: any[]) => any, ...transforms: lodash.Many<(...args: any[]) => any>[]): (...args: any[]) => any;
|
331
333
|
partial: lodash.Partial;
|
332
334
|
partialRight: lodash.PartialRight;
|
333
335
|
rearg(func: (...args: any[]) => any, ...indexes: lodash.Many<number>[]): (...args: any[]) => any;
|
334
336
|
rest(func: (...args: any[]) => any, start?: number | undefined): (...args: any[]) => any;
|
335
337
|
spread<TResult_23>(func: (...args: any[]) => TResult_23, start?: number | undefined): (...args: any[]) => TResult_23;
|
336
|
-
throttle<
|
337
|
-
unary<
|
338
|
-
wrap<
|
339
|
-
castArray<
|
340
|
-
clone<
|
341
|
-
cloneDeep<
|
342
|
-
cloneDeepWith<
|
343
|
-
cloneDeepWith<
|
344
|
-
cloneWith<
|
345
|
-
cloneWith<
|
346
|
-
cloneWith<
|
347
|
-
conformsTo<
|
338
|
+
throttle<T_169 extends (...args: any) => any>(func: T_169, wait?: number | undefined, options?: lodash.ThrottleSettings | undefined): lodash.DebouncedFunc<T_169>;
|
339
|
+
unary<T_170, TResult_24>(func: (arg1: T_170, ...args: any[]) => TResult_24): (arg1: T_170) => TResult_24;
|
340
|
+
wrap<T_171, TArgs, TResult_25>(value: T_171, wrapper: (value: T_171, ...args: TArgs[]) => TResult_25): (...args: TArgs[]) => TResult_25;
|
341
|
+
castArray<T_172>(value?: lodash.Many<T_172> | undefined): T_172[];
|
342
|
+
clone<T_173>(value: T_173): T_173;
|
343
|
+
cloneDeep<T_174>(value: T_174): T_174;
|
344
|
+
cloneDeepWith<T_175>(value: T_175, customizer: lodash.CloneDeepWithCustomizer<T_175>): any;
|
345
|
+
cloneDeepWith<T_176>(value: T_176): T_176;
|
346
|
+
cloneWith<T_177, TResult_26 extends string | number | boolean | object | null>(value: T_177, customizer: lodash.CloneWithCustomizer<T_177, TResult_26>): TResult_26;
|
347
|
+
cloneWith<T_178, TResult_27>(value: T_178, customizer: lodash.CloneWithCustomizer<T_178, TResult_27 | undefined>): T_178 | TResult_27;
|
348
|
+
cloneWith<T_179>(value: T_179): T_179;
|
349
|
+
conformsTo<T_180>(object: T_180, source: lodash.ConformsPredicateObject<T_180>): boolean;
|
348
350
|
eq(value: any, other: any): boolean;
|
349
351
|
gt(value: any, other: any): boolean;
|
350
352
|
gte(value: any, other: any): boolean;
|
351
353
|
isArguments(value?: any): value is IArguments;
|
352
354
|
isArray(value?: any): value is any[];
|
353
|
-
isArray<
|
355
|
+
isArray<T_181>(value?: any): value is any[];
|
354
356
|
isArrayBuffer(value?: any): value is ArrayBuffer;
|
355
|
-
isArrayLike<
|
357
|
+
isArrayLike<T_182 extends {
|
356
358
|
__lodashAnyHack: any;
|
357
|
-
}>(t:
|
359
|
+
}>(t: T_182): boolean;
|
358
360
|
isArrayLike(value: ((...args: any[]) => any) | null | undefined): value is never;
|
359
361
|
isArrayLike(value: any): value is {
|
360
362
|
length: number;
|
361
363
|
};
|
362
|
-
isArrayLikeObject<
|
364
|
+
isArrayLikeObject<T_183 extends {
|
363
365
|
__lodashAnyHack: any;
|
364
|
-
}>(value:
|
366
|
+
}>(value: T_183): boolean;
|
365
367
|
isArrayLikeObject(value: string | number | boolean | Function | ((...args: any[]) => any) | null | undefined): value is never;
|
366
368
|
isArrayLikeObject(value: any): value is object & {
|
367
369
|
length: number;
|
@@ -370,6 +372,12 @@ export declare const vendorMap: {
|
|
370
372
|
isBuffer(value?: any): boolean;
|
371
373
|
isDate(value?: any): value is Date;
|
372
374
|
isElement(value?: any): boolean;
|
375
|
+
isEmpty<T_184 extends {
|
376
|
+
__trapAny: any;
|
377
|
+
}>(value?: T_184 | undefined): boolean;
|
378
|
+
isEmpty(value: string): value is "";
|
379
|
+
isEmpty(value: lodash.List<any> | Map<any, any> | Set<any> | null | undefined): boolean;
|
380
|
+
isEmpty<T_185 extends object>(value: T_185 | null | undefined): value is lodash.EmptyObjectOf<T_185> | null | undefined;
|
373
381
|
isEmpty(value?: any): boolean;
|
374
382
|
isEqual(value: any, other: any): boolean;
|
375
383
|
isEqualWith(value: any, other: any, customizer?: lodash.IsEqualCustomizer | undefined): boolean;
|
@@ -400,8 +408,8 @@ export declare const vendorMap: {
|
|
400
408
|
isWeakSet(value?: any): value is WeakSet<object>;
|
401
409
|
lt(value: any, other: any): boolean;
|
402
410
|
lte(value: any, other: any): boolean;
|
403
|
-
toArray<
|
404
|
-
toArray<
|
411
|
+
toArray<T_186>(value: lodash.Dictionary<T_186> | lodash.NumericDictionary<T_186> | null | undefined): T_186[];
|
412
|
+
toArray<T_187>(value: T_187): T_187[keyof T_187][];
|
405
413
|
toArray(): any[];
|
406
414
|
toFinite(value: any): number;
|
407
415
|
toInteger(value: any): number;
|
@@ -414,17 +422,17 @@ export declare const vendorMap: {
|
|
414
422
|
ceil(n: number, precision?: number | undefined): number;
|
415
423
|
divide(dividend: number, divisor: number): number;
|
416
424
|
floor(n: number, precision?: number | undefined): number;
|
417
|
-
max<
|
418
|
-
maxBy<
|
425
|
+
max<T_188>(collection: lodash.List<T_188> | null | undefined): T_188 | undefined;
|
426
|
+
maxBy<T_189>(collection: lodash.List<T_189> | null | undefined, iteratee?: lodash.ValueIteratee<T_189> | undefined): T_189 | undefined;
|
419
427
|
mean(collection: lodash.List<any> | null | undefined): number;
|
420
|
-
meanBy<
|
421
|
-
min<
|
422
|
-
minBy<
|
428
|
+
meanBy<T_190>(collection: lodash.List<T_190> | null | undefined, iteratee?: lodash.ValueIteratee<T_190> | undefined): number;
|
429
|
+
min<T_191>(collection: lodash.List<T_191> | null | undefined): T_191 | undefined;
|
430
|
+
minBy<T_192>(collection: lodash.List<T_192> | null | undefined, iteratee?: lodash.ValueIteratee<T_192> | undefined): T_192 | undefined;
|
423
431
|
multiply(multiplier: number, multiplicand: number): number;
|
424
432
|
round(n: number, precision?: number | undefined): number;
|
425
433
|
subtract(minuend: number, subtrahend: number): number;
|
426
434
|
sum(collection: lodash.List<any> | null | undefined): number;
|
427
|
-
sumBy<
|
435
|
+
sumBy<T_193>(collection: lodash.List<T_193> | null | undefined, iteratee?: string | ((value: T_193) => number) | undefined): number;
|
428
436
|
clamp(number: number, lower: number, upper: number): number;
|
429
437
|
clamp(number: number, upper: number): number;
|
430
438
|
inRange(n: number, start: number, end?: number | undefined): boolean;
|
@@ -456,9 +464,9 @@ export declare const vendorMap: {
|
|
456
464
|
assignWith<TObject_18, TSource1_11, TSource2_11, TSource3_7, TSource4_3>(object: TObject_18, source1: TSource1_11, source2: TSource2_11, source3: TSource3_7, source4: TSource4_3, customizer: lodash.AssignCustomizer): TObject_18 & TSource1_11 & TSource2_11 & TSource3_7 & TSource4_3;
|
457
465
|
assignWith<TObject_19>(object: TObject_19): TObject_19;
|
458
466
|
assignWith<TResult_30>(object: any, ...otherArgs: any[]): TResult_30;
|
459
|
-
at<
|
460
|
-
at<
|
461
|
-
create<
|
467
|
+
at<T_194>(object: lodash.Dictionary<T_194> | lodash.NumericDictionary<T_194> | null | undefined, ...props: lodash.PropertyPath[]): T_194[];
|
468
|
+
at<T_195 extends object>(object: T_195 | null | undefined, ...props: lodash.Many<keyof T_195>[]): T_195[keyof T_195][];
|
469
|
+
create<T_196 extends object, U_3 extends object>(prototype: T_196, properties?: U_3 | undefined): T_196 & U_3;
|
462
470
|
defaults<TObject_20, TSource_4>(object: TObject_20, source: TSource_4): NonNullable<TSource_4 & TObject_20>;
|
463
471
|
defaults<TObject_21, TSource1_12, TSource2_12>(object: TObject_21, source1: TSource1_12, source2: TSource2_12): NonNullable<TSource2_12 & TSource1_12 & TObject_21>;
|
464
472
|
defaults<TObject_22, TSource1_13, TSource2_13, TSource3_8>(object: TObject_22, source1: TSource1_13, source2: TSource2_13, source3: TSource3_8): NonNullable<TSource3_8 & TSource2_13 & TSource1_13 & TObject_22>;
|
@@ -466,9 +474,9 @@ export declare const vendorMap: {
|
|
466
474
|
defaults<TObject_24>(object: TObject_24): NonNullable<TObject_24>;
|
467
475
|
defaults(object: any, ...sources: any[]): any;
|
468
476
|
defaultsDeep(object: any, ...sources: any[]): any;
|
469
|
-
entries<
|
477
|
+
entries<T_197>(object?: lodash.Dictionary<T_197> | lodash.NumericDictionary<T_197> | undefined): [string, T_197][];
|
470
478
|
entries(object?: object | undefined): [string, any][];
|
471
|
-
entriesIn<
|
479
|
+
entriesIn<T_198>(object?: lodash.Dictionary<T_198> | lodash.NumericDictionary<T_198> | undefined): [string, T_198][];
|
472
480
|
entriesIn(object?: object | undefined): [string, any][];
|
473
481
|
extend<TObject_25, TSource_5>(object: TObject_25, source: TSource_5): TObject_25 & TSource_5;
|
474
482
|
extend<TObject_26, TSource1_15, TSource2_15>(object: TObject_26, source1: TSource1_15, source2: TSource2_15): TObject_26 & TSource1_15 & TSource2_15;
|
@@ -482,18 +490,18 @@ export declare const vendorMap: {
|
|
482
490
|
extendWith<TObject_33, TSource1_20, TSource2_20, TSource3_13, TSource4_6>(object: TObject_33, source1: TSource1_20, source2: TSource2_20, source3: TSource3_13, source4: TSource4_6, customizer: lodash.AssignCustomizer): TObject_33 & TSource1_20 & TSource2_20 & TSource3_13 & TSource4_6;
|
483
491
|
extendWith<TObject_34>(object: TObject_34): TObject_34;
|
484
492
|
extendWith<TResult_32>(object: any, ...otherArgs: any[]): TResult_32;
|
485
|
-
findKey<
|
486
|
-
findLastKey<
|
487
|
-
forIn<
|
488
|
-
forIn<
|
489
|
-
forInRight<
|
490
|
-
forInRight<
|
491
|
-
forOwn<
|
492
|
-
forOwn<
|
493
|
-
forOwnRight<
|
494
|
-
forOwnRight<
|
493
|
+
findKey<T_199>(object: T_199 | null | undefined, predicate?: lodash.ObjectIteratee<T_199> | undefined): string | undefined;
|
494
|
+
findLastKey<T_200>(object: T_200 | null | undefined, predicate?: lodash.ObjectIteratee<T_200> | undefined): string | undefined;
|
495
|
+
forIn<T_201>(object: T_201, iteratee?: lodash.ObjectIterator<T_201, any> | undefined): T_201;
|
496
|
+
forIn<T_202>(object: T_202 | null | undefined, iteratee?: lodash.ObjectIterator<T_202, any> | undefined): T_202 | null | undefined;
|
497
|
+
forInRight<T_203>(object: T_203, iteratee?: lodash.ObjectIterator<T_203, any> | undefined): T_203;
|
498
|
+
forInRight<T_204>(object: T_204 | null | undefined, iteratee?: lodash.ObjectIterator<T_204, any> | undefined): T_204 | null | undefined;
|
499
|
+
forOwn<T_205>(object: T_205, iteratee?: lodash.ObjectIterator<T_205, any> | undefined): T_205;
|
500
|
+
forOwn<T_206>(object: T_206 | null | undefined, iteratee?: lodash.ObjectIterator<T_206, any> | undefined): T_206 | null | undefined;
|
501
|
+
forOwnRight<T_207>(object: T_207, iteratee?: lodash.ObjectIterator<T_207, any> | undefined): T_207;
|
502
|
+
forOwnRight<T_208>(object: T_208 | null | undefined, iteratee?: lodash.ObjectIterator<T_208, any> | undefined): T_208 | null | undefined;
|
495
503
|
functions(object: any): string[];
|
496
|
-
functionsIn<
|
504
|
+
functionsIn<T_209 extends {}>(object: any): string[];
|
497
505
|
get<TObject_35 extends object, TKey extends keyof TObject_35>(object: TObject_35, path: TKey | [TKey]): TObject_35[TKey];
|
498
506
|
get<TObject_36 extends object, TKey_1 extends keyof TObject_36>(object: TObject_36 | null | undefined, path: TKey_1 | [TKey_1]): TObject_36[TKey_1] | undefined;
|
499
507
|
get<TObject_37 extends object, TKey_2 extends keyof TObject_37, TDefault>(object: TObject_37 | null | undefined, path: TKey_2 | [TKey_2], defaultValue: TDefault): TDefault | Exclude<TObject_37[TKey_2], undefined>;
|
@@ -506,33 +514,33 @@ export declare const vendorMap: {
|
|
506
514
|
get<TObject_44 extends object, TKey1_6 extends keyof TObject_44, TKey2_6 extends keyof TObject_44[TKey1_6], TKey3_3 extends keyof TObject_44[TKey1_6][TKey2_6], TKey4 extends keyof TObject_44[TKey1_6][TKey2_6][TKey3_3]>(object: TObject_44, path: [TKey1_6, TKey2_6, TKey3_3, TKey4]): TObject_44[TKey1_6][TKey2_6][TKey3_3][TKey4];
|
507
515
|
get<TObject_45 extends object, TKey1_7 extends keyof TObject_45, TKey2_7 extends keyof TObject_45[TKey1_7], TKey3_4 extends keyof TObject_45[TKey1_7][TKey2_7], TKey4_1 extends keyof TObject_45[TKey1_7][TKey2_7][TKey3_4]>(object: TObject_45 | null | undefined, path: [TKey1_7, TKey2_7, TKey3_4, TKey4_1]): TObject_45[TKey1_7][TKey2_7][TKey3_4][TKey4_1] | undefined;
|
508
516
|
get<TObject_46 extends object, TKey1_8 extends keyof TObject_46, TKey2_8 extends keyof TObject_46[TKey1_8], TKey3_5 extends keyof TObject_46[TKey1_8][TKey2_8], TKey4_2 extends keyof TObject_46[TKey1_8][TKey2_8][TKey3_5], TDefault_3>(object: TObject_46 | null | undefined, path: [TKey1_8, TKey2_8, TKey3_5, TKey4_2], defaultValue: TDefault_3): TDefault_3 | Exclude<TObject_46[TKey1_8][TKey2_8][TKey3_5][TKey4_2], undefined>;
|
509
|
-
get<
|
510
|
-
get<
|
511
|
-
get<
|
517
|
+
get<T_210>(object: lodash.NumericDictionary<T_210>, path: number): T_210;
|
518
|
+
get<T_211>(object: lodash.NumericDictionary<T_211> | null | undefined, path: number): T_211 | undefined;
|
519
|
+
get<T_212, TDefault_4>(object: lodash.NumericDictionary<T_212> | null | undefined, path: number, defaultValue: TDefault_4): T_212 | TDefault_4;
|
512
520
|
get<TDefault_5>(object: null | undefined, path: lodash.PropertyPath, defaultValue: TDefault_5): TDefault_5;
|
513
521
|
get(object: null | undefined, path: lodash.PropertyPath): undefined;
|
514
522
|
get(object: any, path: lodash.PropertyPath, defaultValue?: any): any;
|
515
|
-
has<
|
516
|
-
hasIn<
|
523
|
+
has<T_213>(object: T_213, path: lodash.PropertyPath): boolean;
|
524
|
+
hasIn<T_214>(object: T_214, path: lodash.PropertyPath): boolean;
|
517
525
|
invert(object: object): lodash.Dictionary<string>;
|
518
|
-
invertBy<
|
519
|
-
invertBy<
|
526
|
+
invertBy<T_215>(object: lodash.Dictionary<T_215> | lodash.NumericDictionary<T_215> | null | undefined, interatee?: lodash.ValueIteratee<T_215> | undefined): lodash.Dictionary<string[]>;
|
527
|
+
invertBy<T_216 extends object>(object: T_216 | null | undefined, interatee?: lodash.ValueIteratee<T_216[keyof T_216]> | undefined): lodash.Dictionary<string[]>;
|
520
528
|
invoke(object: any, path: lodash.PropertyPath, ...args: any[]): any;
|
521
529
|
keys(object?: any): string[];
|
522
530
|
keysIn(object?: any): string[];
|
523
|
-
mapKeys<
|
524
|
-
mapKeys<
|
531
|
+
mapKeys<T_217>(object: lodash.List<T_217> | null | undefined, iteratee?: lodash.ListIteratee<T_217> | undefined): lodash.Dictionary<T_217>;
|
532
|
+
mapKeys<T_218 extends object>(object: T_218 | null | undefined, iteratee?: lodash.ObjectIteratee<T_218> | undefined): lodash.Dictionary<T_218[keyof T_218]>;
|
525
533
|
mapValues<TResult_33>(obj: string | null | undefined, callback: lodash.StringIterator<TResult_33>): lodash.NumericDictionary<TResult_33>;
|
526
|
-
mapValues<
|
527
|
-
mapValues<
|
528
|
-
mapValues<
|
529
|
-
mapValues<
|
530
|
-
mapValues<
|
531
|
-
mapValues<
|
534
|
+
mapValues<T_219 extends object, TResult_34>(obj: T_219 | null | undefined, callback: lodash.ObjectIterator<T_219, TResult_34>): { [P in keyof T_219]: TResult_34; };
|
535
|
+
mapValues<T_220>(obj: lodash.Dictionary<T_220> | lodash.NumericDictionary<T_220> | null | undefined, iteratee: object): lodash.Dictionary<boolean>;
|
536
|
+
mapValues<T_221 extends object>(obj: T_221 | null | undefined, iteratee: object): { [P_1 in keyof T_221]: boolean; };
|
537
|
+
mapValues<T_222, TKey_3 extends keyof T_222>(obj: lodash.Dictionary<T_222> | lodash.NumericDictionary<T_222> | null | undefined, iteratee: TKey_3): lodash.Dictionary<T_222[TKey_3]>;
|
538
|
+
mapValues<T_223>(obj: lodash.Dictionary<T_223> | lodash.NumericDictionary<T_223> | null | undefined, iteratee: string): lodash.Dictionary<any>;
|
539
|
+
mapValues<T_224 extends object>(obj: T_224 | null | undefined, iteratee: string): { [P_2 in keyof T_224]: any; };
|
532
540
|
mapValues(obj: string | null | undefined): lodash.NumericDictionary<string>;
|
533
|
-
mapValues<
|
534
|
-
mapValues<
|
535
|
-
mapValues<
|
541
|
+
mapValues<T_225>(obj: lodash.Dictionary<T_225> | lodash.NumericDictionary<T_225> | null | undefined): lodash.Dictionary<T_225>;
|
542
|
+
mapValues<T_226 extends object>(obj: T_226): T_226;
|
543
|
+
mapValues<T_227 extends object>(obj: T_227 | null | undefined): Partial<T_227>;
|
536
544
|
merge<TObject_47, TSource_7>(object: TObject_47, source: TSource_7): TObject_47 & TSource_7;
|
537
545
|
merge<TObject_48, TSource1_21, TSource2_21>(object: TObject_48, source1: TSource1_21, source2: TSource2_21): TObject_48 & TSource1_21 & TSource2_21;
|
538
546
|
merge<TObject_49, TSource1_22, TSource2_22, TSource3_14>(object: TObject_49, source1: TSource1_22, source2: TSource2_22, source3: TSource3_14): TObject_49 & TSource1_22 & TSource2_22 & TSource3_14;
|
@@ -543,54 +551,54 @@ export declare const vendorMap: {
|
|
543
551
|
mergeWith<TObject_53, TSource1_25, TSource2_25, TSource3_16>(object: TObject_53, source1: TSource1_25, source2: TSource2_25, source3: TSource3_16, customizer: (value: any, srcValue: any, key: string, object: any, source: any) => any): TObject_53 & TSource1_25 & TSource2_25 & TSource3_16;
|
544
552
|
mergeWith<TObject_54, TSource1_26, TSource2_26, TSource3_17, TSource4_8>(object: TObject_54, source1: TSource1_26, source2: TSource2_26, source3: TSource3_17, source4: TSource4_8, customizer: (value: any, srcValue: any, key: string, object: any, source: any) => any): TObject_54 & TSource1_26 & TSource2_26 & TSource3_17 & TSource4_8;
|
545
553
|
mergeWith(object: any, ...otherArgs: any[]): any;
|
546
|
-
omit<
|
547
|
-
omit<
|
548
|
-
omit<
|
549
|
-
omitBy<
|
550
|
-
omitBy<
|
551
|
-
omitBy<
|
552
|
-
pick<
|
553
|
-
pick<
|
554
|
-
pickBy<
|
555
|
-
pickBy<
|
556
|
-
pickBy<
|
557
|
-
pickBy<
|
558
|
-
pickBy<
|
554
|
+
omit<T_228 extends object, K_1 extends lodash.PropertyName[]>(object: T_228 | null | undefined, ...paths: K_1): Pick<T_228, Exclude<keyof T_228, K_1[number]>>;
|
555
|
+
omit<T_229 extends object, K_2 extends keyof T_229>(object: T_229 | null | undefined, ...paths: lodash.Many<K_2>[]): lodash.Omit<T_229, K_2>;
|
556
|
+
omit<T_230 extends object>(object: T_230 | null | undefined, ...paths: lodash.Many<lodash.PropertyName>[]): Partial<T_230>;
|
557
|
+
omitBy<T_231>(object: lodash.Dictionary<T_231> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_231> | undefined): lodash.Dictionary<T_231>;
|
558
|
+
omitBy<T_232>(object: lodash.NumericDictionary<T_232> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_232> | undefined): lodash.NumericDictionary<T_232>;
|
559
|
+
omitBy<T_233 extends object>(object: T_233 | null | undefined, predicate: lodash.ValueKeyIteratee<T_233[keyof T_233]>): Partial<T_233>;
|
560
|
+
pick<T_234 extends object, U_4 extends keyof T_234>(object: T_234, ...props: lodash.Many<U_4>[]): Pick<T_234, U_4>;
|
561
|
+
pick<T_235>(object: T_235 | null | undefined, ...props: lodash.PropertyPath[]): Partial<T_235>;
|
562
|
+
pickBy<T_236, S_6 extends T_236>(object: lodash.Dictionary<T_236> | null | undefined, predicate: lodash.ValueKeyIterateeTypeGuard<T_236, S_6>): lodash.Dictionary<S_6>;
|
563
|
+
pickBy<T_237, S_7 extends T_237>(object: lodash.NumericDictionary<T_237> | null | undefined, predicate: lodash.ValueKeyIterateeTypeGuard<T_237, S_7>): lodash.NumericDictionary<S_7>;
|
564
|
+
pickBy<T_238>(object: lodash.Dictionary<T_238> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_238> | undefined): lodash.Dictionary<T_238>;
|
565
|
+
pickBy<T_239>(object: lodash.NumericDictionary<T_239> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_239> | undefined): lodash.NumericDictionary<T_239>;
|
566
|
+
pickBy<T_240 extends object>(object: T_240 | null | undefined, predicate?: lodash.ValueKeyIteratee<T_240[keyof T_240]> | undefined): Partial<T_240>;
|
559
567
|
result<TResult_35>(object: any, path: lodash.PropertyPath, defaultValue?: TResult_35 | ((...args: any[]) => TResult_35) | undefined): TResult_35;
|
560
|
-
set<
|
568
|
+
set<T_241 extends object>(object: T_241, path: lodash.PropertyPath, value: any): T_241;
|
561
569
|
set<TResult_36>(object: object, path: lodash.PropertyPath, value: any): TResult_36;
|
562
|
-
setWith<
|
563
|
-
setWith<
|
564
|
-
toPairs<
|
570
|
+
setWith<T_242 extends object>(object: T_242, path: lodash.PropertyPath, value: any, customizer?: lodash.SetWithCustomizer<T_242> | undefined): T_242;
|
571
|
+
setWith<T_243 extends object, TResult_37>(object: T_243, path: lodash.PropertyPath, value: any, customizer?: lodash.SetWithCustomizer<T_243> | undefined): TResult_37;
|
572
|
+
toPairs<T_244>(object?: lodash.Dictionary<T_244> | lodash.NumericDictionary<T_244> | undefined): [string, T_244][];
|
565
573
|
toPairs(object?: object | undefined): [string, any][];
|
566
|
-
toPairsIn<
|
574
|
+
toPairsIn<T_245>(object?: lodash.Dictionary<T_245> | lodash.NumericDictionary<T_245> | undefined): [string, T_245][];
|
567
575
|
toPairsIn(object?: object | undefined): [string, any][];
|
568
|
-
transform<
|
569
|
-
transform<
|
570
|
-
transform<
|
576
|
+
transform<T_246, TResult_38>(object: readonly T_246[], iteratee: lodash.MemoVoidArrayIterator<T_246, TResult_38>, accumulator?: TResult_38 | undefined): TResult_38;
|
577
|
+
transform<T_247, TResult_39>(object: lodash.Dictionary<T_247>, iteratee: lodash.MemoVoidDictionaryIterator<T_247, string, TResult_39>, accumulator?: TResult_39 | undefined): TResult_39;
|
578
|
+
transform<T_248 extends object, TResult_40>(object: T_248, iteratee: lodash.MemoVoidDictionaryIterator<T_248[keyof T_248], keyof T_248, TResult_40>, accumulator?: TResult_40 | undefined): TResult_40;
|
571
579
|
transform(object: any[]): any[];
|
572
580
|
transform(object: object): lodash.Dictionary<any>;
|
573
581
|
unset(object: any, path: lodash.PropertyPath): boolean;
|
574
582
|
update(object: object, path: lodash.PropertyPath, updater: (value: any) => any): any;
|
575
|
-
updateWith<
|
576
|
-
updateWith<
|
577
|
-
values<
|
578
|
-
values<
|
583
|
+
updateWith<T_249 extends object>(object: T_249, path: lodash.PropertyPath, updater: (oldValue: any) => any, customizer?: lodash.SetWithCustomizer<T_249> | undefined): T_249;
|
584
|
+
updateWith<T_250 extends object, TResult_41>(object: T_250, path: lodash.PropertyPath, updater: (oldValue: any) => any, customizer?: lodash.SetWithCustomizer<T_250> | undefined): TResult_41;
|
585
|
+
values<T_251>(object: lodash.Dictionary<T_251> | lodash.NumericDictionary<T_251> | lodash.List<T_251> | null | undefined): T_251[];
|
586
|
+
values<T_252 extends object>(object: T_252 | null | undefined): T_252[keyof T_252][];
|
579
587
|
values(object: any): any[];
|
580
|
-
valuesIn<
|
581
|
-
valuesIn<
|
588
|
+
valuesIn<T_253>(object: lodash.Dictionary<T_253> | lodash.NumericDictionary<T_253> | lodash.List<T_253> | null | undefined): T_253[];
|
589
|
+
valuesIn<T_254 extends object>(object: T_254 | null | undefined): T_254[keyof T_254][];
|
582
590
|
chain<TrapAny extends {
|
583
591
|
__lodashAnyHack: any;
|
584
592
|
}>(value: TrapAny): lodash.CollectionChain<any> & lodash.FunctionChain<any> & lodash.ObjectChain<any> & lodash.PrimitiveChain<any> & lodash.StringChain;
|
585
|
-
chain<
|
593
|
+
chain<T_255 extends null | undefined>(value: T_255): lodash.PrimitiveChain<T_255>;
|
586
594
|
chain(value: string): lodash.StringChain;
|
587
595
|
chain(value: string | null | undefined): lodash.StringNullableChain;
|
588
|
-
chain<
|
589
|
-
chain<
|
590
|
-
chain<
|
591
|
-
chain<
|
592
|
-
tap<
|
593
|
-
thru<
|
596
|
+
chain<T_256 extends (...args: any[]) => any>(value: T_256): lodash.FunctionChain<T_256>;
|
597
|
+
chain<T_257 = any>(value: lodash.List<T_257> | null | undefined): lodash.CollectionChain<T_257>;
|
598
|
+
chain<T_258 extends object>(value: T_258 | null | undefined): lodash.ObjectChain<T_258>;
|
599
|
+
chain<T_259>(value: T_259): lodash.PrimitiveChain<T_259>;
|
600
|
+
tap<T_260>(value: T_260, interceptor: (value: T_260) => void): T_260;
|
601
|
+
thru<T_261, TResult_42>(value: T_261, interceptor: (value: T_261) => TResult_42): TResult_42;
|
594
602
|
camelCase(string?: string | undefined): string;
|
595
603
|
capitalize(string?: string | undefined): string;
|
596
604
|
deburr(string?: string | undefined): string;
|
@@ -628,12 +636,13 @@ export declare const vendorMap: {
|
|
628
636
|
words(string?: string | undefined, pattern?: string | RegExp | undefined): string[];
|
629
637
|
words(string: string, index: string | number, guard: object): string[];
|
630
638
|
attempt<TResult_43>(func: (...args: any[]) => TResult_43, ...args: any[]): Error | TResult_43;
|
631
|
-
bindAll<
|
632
|
-
cond<
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
defaultTo<
|
639
|
+
bindAll<T_262>(object: T_262, ...methodNames: lodash.Many<string>[]): T_262;
|
640
|
+
cond<R>(pairs: lodash.CondPairNullary<R>[]): () => R;
|
641
|
+
cond<T_263, R_1>(pairs: lodash.CondPairUnary<T_263, R_1>[]): (Target: T_263) => R_1;
|
642
|
+
conforms<T_264>(source: lodash.ConformsPredicateObject<T_264>): (value: T_264) => boolean;
|
643
|
+
constant<T_265>(value: T_265): () => T_265;
|
644
|
+
defaultTo<T_266>(value: T_266 | null | undefined, defaultValue: T_266): T_266;
|
645
|
+
defaultTo<T_267, TDefault_6>(value: T_267 | null | undefined, defaultValue: TDefault_6): T_267 | TDefault_6;
|
637
646
|
flow<A extends any[], R1, R2, R3, R4, R5, R6, R7>(f1: (...args: A) => R1, f2: (a: R1) => R2, f3: (a: R2) => R3, f4: (a: R3) => R4, f5: (a: R4) => R5, f6: (a: R5) => R6, f7: (a: R6) => R7): (...args: A) => R7;
|
638
647
|
flow<A_1 extends any[], R1_1, R2_1, R3_1, R4_1, R5_1, R6_1, R7_1>(f1: (...args: A_1) => R1_1, f2: (a: R1_1) => R2_1, f3: (a: R2_1) => R3_1, f4: (a: R3_1) => R4_1, f5: (a: R4_1) => R5_1, f6: (a: R5_1) => R6_1, f7: (a: R6_1) => R7_1, ...func: lodash.Many<(a: any) => any>[]): (...args: A_1) => any;
|
639
648
|
flow<A_2 extends any[], R1_2, R2_2, R3_2, R4_2, R5_2, R6_2>(f1: (...args: A_2) => R1_2, f2: (a: R1_2) => R2_2, f3: (a: R2_2) => R3_2, f4: (a: R3_2) => R4_2, f5: (a: R4_2) => R5_2, f6: (a: R5_2) => R6_2): (...args: A_2) => R6_2;
|
@@ -649,14 +658,14 @@ export declare const vendorMap: {
|
|
649
658
|
flowRight<A_11 extends any[], R1_11, R2_11, R3_10>(f3: (a: R2_11) => R3_10, f2: (a: R1_11) => R2_11, f1: (...args: A_11) => R1_11): (...args: A_11) => R3_10;
|
650
659
|
flowRight<A_12 extends any[], R1_12, R2_12>(f2: (a: R1_12) => R2_12, f1: (...args: A_12) => R1_12): (...args: A_12) => R2_12;
|
651
660
|
flowRight(...func: lodash.Many<(...args: any[]) => any>[]): (...args: any[]) => any;
|
652
|
-
identity<
|
661
|
+
identity<T_268>(value: T_268): T_268;
|
653
662
|
identity(): undefined;
|
654
663
|
iteratee<TFunction extends (...args: any[]) => any>(func: TFunction): TFunction;
|
655
664
|
iteratee(func: string | number | symbol | object): (...args: any[]) => any;
|
656
|
-
matches<
|
657
|
-
matches<
|
658
|
-
matchesProperty<
|
659
|
-
matchesProperty<
|
665
|
+
matches<T_269>(source: T_269): (value: any) => boolean;
|
666
|
+
matches<T_270, V>(source: T_270): (value: V) => boolean;
|
667
|
+
matchesProperty<T_271>(path: lodash.PropertyPath, srcValue: T_271): (value: any) => boolean;
|
668
|
+
matchesProperty<T_272, V_1>(path: lodash.PropertyPath, srcValue: T_272): (value: V_1) => boolean;
|
660
669
|
method(path: lodash.PropertyPath, ...args: any[]): (object: any) => any;
|
661
670
|
methodOf(object: object, ...args: any[]): (path: lodash.PropertyPath) => any;
|
662
671
|
mixin<TObject_55>(object: TObject_55, source: lodash.Dictionary<(...args: any[]) => any>, options?: lodash.MixinOptions | undefined): TObject_55;
|
@@ -665,12 +674,12 @@ export declare const vendorMap: {
|
|
665
674
|
noop(...args: any[]): void;
|
666
675
|
nthArg(n?: number | undefined): (...args: any[]) => any;
|
667
676
|
over<TResult_45>(...iteratees: lodash.Many<(...args: any[]) => TResult_45>[]): (...args: any[]) => TResult_45[];
|
668
|
-
overEvery<
|
669
|
-
overEvery<
|
670
|
-
overSome<
|
671
|
-
overSome<
|
677
|
+
overEvery<T_273, Result1 extends T_273, Result2 extends T_273>(predicates_0: (arg: T_273) => arg is Result1, predicates_1: (arg: T_273) => arg is Result2): (arg: T_273) => arg is Result1 & Result2;
|
678
|
+
overEvery<T_274>(...predicates: lodash.Many<(...args: T_274[]) => boolean>[]): (...args: T_274[]) => boolean;
|
679
|
+
overSome<T_275, Result1_1 extends T_275, Result2_1 extends T_275>(predicates_0: (arg: T_275) => arg is Result1_1, predicates_1: (arg: T_275) => arg is Result2_1): (arg: T_275) => arg is Result1_1 | Result2_1;
|
680
|
+
overSome<T_276>(...predicates: lodash.Many<(...args: T_276[]) => boolean>[]): (...args: T_276[]) => boolean;
|
672
681
|
property<TObj, TResult_46>(path: lodash.PropertyPath): (obj: TObj) => TResult_46;
|
673
|
-
propertyOf<
|
682
|
+
propertyOf<T_277 extends {}>(object: T_277): (path: lodash.PropertyPath) => any;
|
674
683
|
range(start: number, end?: number | undefined, step?: number | undefined): number[];
|
675
684
|
range(end: number, index: string | number, guard: object): number[];
|
676
685
|
rangeRight(start: number, end?: number | undefined, step?: number | undefined): number[];
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import * as angularCore from '@angular/core';
|
2
2
|
import * as angularForms from '@angular/forms';
|
3
|
-
import { CatalogApiService, DeltaApiService, DocumentAttachmentApiService, DocumentTemplatesApiService, QuoteApiService, RampApiService, SalesforceApiService, } from '@veloce/api';
|
3
|
+
import { CatalogApiService, DeltaApiService, DocumentAttachmentApiService, DocumentTemplatesApiService, QuoteApiService, RampApiService, PicklistsApiService, SalesforceApiService, } from '@veloce/api';
|
4
4
|
import { ConfigurationService, FlowConfigurationService, lineItemUtils, LineItemWorker, ProductImagesService, QuoteDraftService, } from '@veloce/sdk/core';
|
5
5
|
import * as lodash from 'lodash';
|
6
6
|
import * as rxjs from 'rxjs';
|
@@ -25,6 +25,7 @@ export const vendorMap = {
|
|
25
25
|
RampApiService,
|
26
26
|
CatalogApiService,
|
27
27
|
DeltaApiService,
|
28
|
+
PicklistsApiService,
|
28
29
|
},
|
29
30
|
'@angular/core': angularCore,
|
30
31
|
'@angular/forms': angularForms,
|
@@ -32,4 +33,4 @@ export const vendorMap = {
|
|
32
33
|
'rxjs/operators': rxjsOperators,
|
33
34
|
lodash: lodash,
|
34
35
|
};
|
35
|
-
//# sourceMappingURL=data:application/json;base64,
|
36
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVuZG9yLW1hcC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvc2RrL2Ntcy92ZW5kb3ItbWFwLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sS0FBSyxXQUFXLE1BQU0sZUFBZSxDQUFDO0FBQzdDLE9BQU8sS0FBSyxZQUFZLE1BQU0sZ0JBQWdCLENBQUM7QUFDL0MsT0FBTyxFQUNMLGlCQUFpQixFQUNqQixlQUFlLEVBQ2YsNEJBQTRCLEVBQzVCLDJCQUEyQixFQUMzQixlQUFlLEVBQ2YsY0FBYyxFQUNkLG1CQUFtQixFQUNuQixvQkFBb0IsR0FDckIsTUFBTSxhQUFhLENBQUM7QUFDckIsT0FBTyxFQUNMLG9CQUFvQixFQUNwQix3QkFBd0IsRUFDeEIsYUFBYSxFQUNiLGNBQWMsRUFDZCxvQkFBb0IsRUFDcEIsaUJBQWlCLEdBQ2xCLE1BQU0sa0JBQWtCLENBQUM7QUFDMUIsT0FBTyxLQUFLLE1BQU0sTUFBTSxRQUFRLENBQUM7QUFDakMsT0FBTyxLQUFLLElBQUksTUFBTSxNQUFNLENBQUM7QUFDN0IsT0FBTyxLQUFLLGFBQWEsTUFBTSxnQkFBZ0IsQ0FBQztBQUNoRCxPQUFPLEtBQUssa0JBQWtCLE1BQU0sZUFBZSxDQUFDO0FBQ3BELE9BQU8sS0FBSyxVQUFVLE1BQU0sb0JBQW9CLENBQUM7QUFDakQsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDaEUsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFFaEUsTUFBTSxDQUFDLE1BQU0sU0FBUyxHQUFHO0lBQ3ZCLGtCQUFrQixrQkFDaEIsb0JBQW9CO1FBQ3BCLGlCQUFpQjtRQUNqQix3QkFBd0I7UUFDeEIsY0FBYztRQUNkLG9CQUFvQixJQUNqQixhQUFhLENBQ2pCO0lBQ0QsaUJBQWlCLGdEQUNaLGtCQUFrQixHQUNsQixVQUFVLEtBQ2IsZ0JBQWdCO1FBQ2hCLGdCQUFnQixHQUNqQjtJQUNELGFBQWEsRUFBRTtRQUNiLG9CQUFvQjtRQUNwQixlQUFlO1FBQ2YsMkJBQTJCO1FBQzNCLDRCQUE0QjtRQUM1QixjQUFjO1FBQ2QsaUJBQWlCO1FBQ2pCLGVBQWU7UUFDZixtQkFBbUI7S0FDcEI7SUFDRCxlQUFlLEVBQUUsV0FBVztJQUM1QixnQkFBZ0IsRUFBRSxZQUFZO0lBQzlCLElBQUksRUFBRSxJQUFJO0lBQ1YsZ0JBQWdCLEVBQUUsYUFBYTtJQUMvQixNQUFNLEVBQUUsTUFBTTtDQUNmLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBhbmd1bGFyQ29yZSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCAqIGFzIGFuZ3VsYXJGb3JtcyBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQge1xuICBDYXRhbG9nQXBpU2VydmljZSxcbiAgRGVsdGFBcGlTZXJ2aWNlLFxuICBEb2N1bWVudEF0dGFjaG1lbnRBcGlTZXJ2aWNlLFxuICBEb2N1bWVudFRlbXBsYXRlc0FwaVNlcnZpY2UsXG4gIFF1b3RlQXBpU2VydmljZSxcbiAgUmFtcEFwaVNlcnZpY2UsXG4gIFBpY2tsaXN0c0FwaVNlcnZpY2UsXG4gIFNhbGVzZm9yY2VBcGlTZXJ2aWNlLFxufSBmcm9tICdAdmVsb2NlL2FwaSc7XG5pbXBvcnQge1xuICBDb25maWd1cmF0aW9uU2VydmljZSxcbiAgRmxvd0NvbmZpZ3VyYXRpb25TZXJ2aWNlLFxuICBsaW5lSXRlbVV0aWxzLFxuICBMaW5lSXRlbVdvcmtlcixcbiAgUHJvZHVjdEltYWdlc1NlcnZpY2UsXG4gIFF1b3RlRHJhZnRTZXJ2aWNlLFxufSBmcm9tICdAdmVsb2NlL3Nkay9jb3JlJztcbmltcG9ydCAqIGFzIGxvZGFzaCBmcm9tICdsb2Rhc2gnO1xuaW1wb3J0ICogYXMgcnhqcyBmcm9tICdyeGpzJztcbmltcG9ydCAqIGFzIHJ4anNPcGVyYXRvcnMgZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xuaW1wb3J0ICogYXMgY21zSW5qZWN0aW9uVG9rZW5zIGZyb20gJy4vY21zLmFjdGlvbnMnO1xuaW1wb3J0ICogYXMgY21zQWN0aW9ucyBmcm9tICcuL2luamVjdGlvbi10b2tlbnMnO1xuaW1wb3J0IHsgSW50ZWdyYXRpb25TdGF0ZSB9IGZyb20gJy4vc2VydmljZXMvaW50ZWdyYXRpb24uc3RhdGUnO1xuaW1wb3J0IHsgVGVtcGxhdGVzU2VydmljZSB9IGZyb20gJy4vc2VydmljZXMvdGVtcGxhdGVzLnNlcnZpY2UnO1xuXG5leHBvcnQgY29uc3QgdmVuZG9yTWFwID0ge1xuICAnQHZlbG9jZS9zZGsvY29yZSc6IHtcbiAgICBDb25maWd1cmF0aW9uU2VydmljZSxcbiAgICBRdW90ZURyYWZ0U2VydmljZSxcbiAgICBGbG93Q29uZmlndXJhdGlvblNlcnZpY2UsXG4gICAgTGluZUl0ZW1Xb3JrZXIsXG4gICAgUHJvZHVjdEltYWdlc1NlcnZpY2UsXG4gICAgLi4ubGluZUl0ZW1VdGlscyxcbiAgfSxcbiAgJ0B2ZWxvY2Uvc2RrL2Ntcyc6IHtcbiAgICAuLi5jbXNJbmplY3Rpb25Ub2tlbnMsXG4gICAgLi4uY21zQWN0aW9ucyxcbiAgICBUZW1wbGF0ZXNTZXJ2aWNlLFxuICAgIEludGVncmF0aW9uU3RhdGUsXG4gIH0sXG4gICdAdmVsb2NlL2FwaSc6IHtcbiAgICBTYWxlc2ZvcmNlQXBpU2VydmljZSxcbiAgICBRdW90ZUFwaVNlcnZpY2UsXG4gICAgRG9jdW1lbnRUZW1wbGF0ZXNBcGlTZXJ2aWNlLFxuICAgIERvY3VtZW50QXR0YWNobWVudEFwaVNlcnZpY2UsXG4gICAgUmFtcEFwaVNlcnZpY2UsXG4gICAgQ2F0YWxvZ0FwaVNlcnZpY2UsXG4gICAgRGVsdGFBcGlTZXJ2aWNlLFxuICAgIFBpY2tsaXN0c0FwaVNlcnZpY2UsXG4gIH0sXG4gICdAYW5ndWxhci9jb3JlJzogYW5ndWxhckNvcmUsXG4gICdAYW5ndWxhci9mb3Jtcyc6IGFuZ3VsYXJGb3JtcyxcbiAgcnhqczogcnhqcyxcbiAgJ3J4anMvb3BlcmF0b3JzJzogcnhqc09wZXJhdG9ycyxcbiAgbG9kYXNoOiBsb2Rhc2gsXG59O1xuXG5leHBvcnQgdHlwZSBWZW5kb3JNYXAgPSB0eXBlb2YgdmVuZG9yTWFwO1xuIl19
|
@@ -16,7 +16,7 @@ import { ConfigurationService, LineItemWorker, generateLineItem, getAttributeVal
|
|
16
16
|
import * as i1 from '@veloce/components';
|
17
17
|
import { LoaderModule } from '@veloce/components';
|
18
18
|
import { transform } from '@babel/standalone';
|
19
|
-
import { SalesforceApiService, QuoteApiService, DocumentTemplatesApiService, DocumentAttachmentApiService, RampApiService, CatalogApiService, DeltaApiService, ApiModule } from '@veloce/api';
|
19
|
+
import { SalesforceApiService, QuoteApiService, DocumentTemplatesApiService, DocumentAttachmentApiService, RampApiService, CatalogApiService, DeltaApiService, PicklistsApiService, ApiModule } from '@veloce/api';
|
20
20
|
import * as rxjsOperators from 'rxjs/operators';
|
21
21
|
import * as i3 from 'primeng/api';
|
22
22
|
import { DialogService } from 'primeng/dynamicdialog';
|
@@ -1003,6 +1003,7 @@ const vendorMap = {
|
|
1003
1003
|
RampApiService,
|
1004
1004
|
CatalogApiService,
|
1005
1005
|
DeltaApiService,
|
1006
|
+
PicklistsApiService,
|
1006
1007
|
},
|
1007
1008
|
'@angular/core': i0,
|
1008
1009
|
'@angular/forms': angularForms,
|