@veloceapps/sdk 4.0.8 → 4.0.10
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/bundles/veloce-sdk-cms.umd.js +2 -2
- package/bundles/veloce-sdk-cms.umd.js.map +1 -1
- package/bundles/veloce-sdk.umd.js +8 -11
- package/bundles/veloce-sdk.umd.js.map +1 -1
- package/cms/vendor-map.d.ts +132 -124
- package/esm2015/cms/vendor-map.js +3 -3
- package/esm2015/src/components/header/cart-overlay/cart-preview.component.js +7 -10
- package/esm2015/src/components/header/header.component.js +2 -2
- package/fesm2015/veloce-sdk-cms.js +2 -2
- package/fesm2015/veloce-sdk-cms.js.map +1 -1
- package/fesm2015/veloce-sdk.js +7 -10
- package/fesm2015/veloce-sdk.js.map +1 -1
- package/package.json +1 -1
- package/src/components/header/cart-overlay/cart-preview.component.d.ts +1 -1
package/cms/vendor-map.d.ts
CHANGED
@@ -5,7 +5,7 @@ import { ConfigurationService, FlowConfigurationService, LineItemWorker, Product
|
|
5
5
|
import * as lodash from 'lodash';
|
6
6
|
import * as rxjs from 'rxjs';
|
7
7
|
import * as rxjsOperators from 'rxjs/operators';
|
8
|
-
import * as
|
8
|
+
import * as cmsActions from './cms.actions';
|
9
9
|
import { IntegrationState } from './services/integration.state';
|
10
10
|
import { TemplatesService } from './services/templates.service';
|
11
11
|
export declare const vendorMap: {
|
@@ -43,13 +43,7 @@ export declare const vendorMap: {
|
|
43
43
|
'@veloce/sdk/cms': {
|
44
44
|
TemplatesService: typeof TemplatesService;
|
45
45
|
IntegrationState: typeof IntegrationState;
|
46
|
-
|
47
|
-
UI_DEFINITION_METADATA: angularCore.InjectionToken<import("@veloce/sdk/core").UIDefinitionMetadata>;
|
48
|
-
ELEMENT_METADATA: angularCore.InjectionToken<import("@veloce/sdk/cms").ElementMetadata>;
|
49
|
-
SHARED_ELEMENT_METADATA: angularCore.InjectionToken<import("@veloce/sdk/cms").ElementMetadata>;
|
50
|
-
ELEMENT_CONFIG: angularCore.InjectionToken<import("@veloce/sdk/cms").ElementConfig>;
|
51
|
-
VENDOR_MAP: angularCore.InjectionToken<lodash.Dictionary<any>>;
|
52
|
-
FlowAction: typeof cmsInjectionTokens.FlowAction;
|
46
|
+
FlowAction: typeof cmsActions.FlowAction;
|
53
47
|
ConfigureProductAction: ({ lineItemId, productId, }: {
|
54
48
|
lineItemId?: string | undefined;
|
55
49
|
productId?: string | undefined;
|
@@ -59,6 +53,12 @@ export declare const vendorMap: {
|
|
59
53
|
ApplyProductConfigurationAction: () => import("@veloce/sdk/cms").IntegrationAction<any>;
|
60
54
|
OpenDocGenAction: () => import("@veloce/sdk/cms").IntegrationAction<any>;
|
61
55
|
CloseDocGenAction: () => import("@veloce/sdk/cms").IntegrationAction<any>;
|
56
|
+
DEFAULT_PLUGINS_TOKEN: angularCore.InjectionToken<typeof import("./engine/models/plugin").Plugin[]>;
|
57
|
+
UI_DEFINITION_METADATA: angularCore.InjectionToken<import("@veloce/sdk/core").UIDefinitionMetadata>;
|
58
|
+
ELEMENT_METADATA: angularCore.InjectionToken<import("@veloce/sdk/cms").ElementMetadata>;
|
59
|
+
SHARED_ELEMENT_METADATA: angularCore.InjectionToken<import("@veloce/sdk/cms").ElementMetadata>;
|
60
|
+
ELEMENT_CONFIG: angularCore.InjectionToken<import("@veloce/sdk/cms").ElementConfig>;
|
61
|
+
VENDOR_MAP: angularCore.InjectionToken<lodash.Dictionary<any>>;
|
62
62
|
};
|
63
63
|
'@veloce/api': {
|
64
64
|
SalesforceApiService: typeof SalesforceApiService;
|
@@ -264,8 +264,8 @@ export declare const vendorMap: {
|
|
264
264
|
forEachRight<TString_1 extends string | null | undefined>(collection: TString_1, iteratee?: lodash.StringIterator<any> | undefined): TString_1;
|
265
265
|
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;
|
266
266
|
forEachRight<T_96 extends object>(collection: T_96 | null | undefined, iteratee?: lodash.ObjectIterator<T_96, any> | undefined): T_96 | null | undefined;
|
267
|
-
groupBy<T_120>(collection: lodash.List<T_120> | null | undefined, iteratee?: lodash.ValueIteratee<T_120> | undefined): lodash.Dictionary<
|
268
|
-
groupBy<T_121 extends object>(collection: T_121 | null | undefined, iteratee?: lodash.ValueIteratee<T_121[keyof T_121]> | undefined): lodash.Dictionary<
|
267
|
+
groupBy<T_120>(collection: lodash.List<T_120> | null | undefined, iteratee?: lodash.ValueIteratee<T_120> | undefined): lodash.Dictionary<T_120[]>;
|
268
|
+
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][]>;
|
269
269
|
includes<T_122>(collection: lodash.Dictionary<T_122> | lodash.NumericDictionary<T_122> | null | undefined, target: T_122, fromIndex?: number | undefined): boolean;
|
270
270
|
invokeMap(collection: object | null | undefined, methodName: string, ...args: any[]): any[];
|
271
271
|
invokeMap<TResult_13>(collection: object | null | undefined, method: (...args: any[]) => TResult_13, ...args: any[]): TResult_13[];
|
@@ -319,51 +319,52 @@ export declare const vendorMap: {
|
|
319
319
|
bindKey: lodash.FunctionBindKey;
|
320
320
|
curry: lodash.Curry;
|
321
321
|
curryRight: lodash.CurryRight;
|
322
|
-
debounce<T_163 extends (...args: any) => any>(func: T_163, wait
|
322
|
+
debounce<T_163 extends (...args: any) => any>(func: T_163, wait: number | undefined, options: lodash.DebounceSettingsLeading): lodash.DebouncedFuncLeading<T_163>;
|
323
|
+
debounce<T_164 extends (...args: any) => any>(func: T_164, wait?: number | undefined, options?: lodash.DebounceSettings | undefined): lodash.DebouncedFunc<T_164>;
|
323
324
|
defer(func: (...args: any[]) => any, ...args: any[]): number;
|
324
325
|
delay(func: (...args: any[]) => any, wait: number, ...args: any[]): number;
|
325
|
-
flip<
|
326
|
+
flip<T_165 extends (...args: any) => any>(func: T_165): T_165;
|
326
327
|
memoize: {
|
327
|
-
<
|
328
|
+
<T_166 extends (...args: any) => any>(func: T_166, resolver?: ((...args: Parameters<T_166>) => any) | undefined): T_166 & lodash.MemoizedFunction;
|
328
329
|
Cache: lodash.MapCacheConstructor;
|
329
330
|
};
|
330
|
-
negate<
|
331
|
-
once<
|
331
|
+
negate<T_167 extends any[]>(predicate: (...args: T_167) => boolean): (...args: T_167) => boolean;
|
332
|
+
once<T_168 extends (...args: any) => any>(func: T_168): T_168;
|
332
333
|
overArgs(func: (...args: any[]) => any, ...transforms: lodash.Many<(...args: any[]) => any>[]): (...args: any[]) => any;
|
333
334
|
partial: lodash.Partial;
|
334
335
|
partialRight: lodash.PartialRight;
|
335
336
|
rearg(func: (...args: any[]) => any, ...indexes: lodash.Many<number>[]): (...args: any[]) => any;
|
336
337
|
rest(func: (...args: any[]) => any, start?: number | undefined): (...args: any[]) => any;
|
337
338
|
spread<TResult_23>(func: (...args: any[]) => TResult_23, start?: number | undefined): (...args: any[]) => TResult_23;
|
338
|
-
throttle<
|
339
|
-
unary<
|
340
|
-
wrap<
|
341
|
-
castArray<
|
342
|
-
clone<
|
343
|
-
cloneDeep<
|
344
|
-
cloneDeepWith<
|
345
|
-
cloneDeepWith<
|
346
|
-
cloneWith<
|
347
|
-
cloneWith<
|
348
|
-
cloneWith<
|
349
|
-
conformsTo<
|
339
|
+
throttle<T_169 extends (...args: any) => any>(func: T_169, wait?: number | undefined, options?: lodash.ThrottleSettings | undefined): lodash.DebouncedFunc<T_169>;
|
340
|
+
unary<T_170, TResult_24>(func: (arg1: T_170, ...args: any[]) => TResult_24): (arg1: T_170) => TResult_24;
|
341
|
+
wrap<T_171, TArgs, TResult_25>(value: T_171, wrapper: (value: T_171, ...args: TArgs[]) => TResult_25): (...args: TArgs[]) => TResult_25;
|
342
|
+
castArray<T_172>(value?: lodash.Many<T_172> | undefined): T_172[];
|
343
|
+
clone<T_173>(value: T_173): T_173;
|
344
|
+
cloneDeep<T_174>(value: T_174): T_174;
|
345
|
+
cloneDeepWith<T_175>(value: T_175, customizer: lodash.CloneDeepWithCustomizer<T_175>): any;
|
346
|
+
cloneDeepWith<T_176>(value: T_176): T_176;
|
347
|
+
cloneWith<T_177, TResult_26 extends string | number | boolean | object | null>(value: T_177, customizer: lodash.CloneWithCustomizer<T_177, TResult_26>): TResult_26;
|
348
|
+
cloneWith<T_178, TResult_27>(value: T_178, customizer: lodash.CloneWithCustomizer<T_178, TResult_27 | undefined>): T_178 | TResult_27;
|
349
|
+
cloneWith<T_179>(value: T_179): T_179;
|
350
|
+
conformsTo<T_180>(object: T_180, source: lodash.ConformsPredicateObject<T_180>): boolean;
|
350
351
|
eq(value: any, other: any): boolean;
|
351
352
|
gt(value: any, other: any): boolean;
|
352
353
|
gte(value: any, other: any): boolean;
|
353
354
|
isArguments(value?: any): value is IArguments;
|
354
355
|
isArray(value?: any): value is any[];
|
355
|
-
isArray<
|
356
|
+
isArray<T_181>(value?: any): value is any[];
|
356
357
|
isArrayBuffer(value?: any): value is ArrayBuffer;
|
357
|
-
isArrayLike<
|
358
|
+
isArrayLike<T_182 extends {
|
358
359
|
__lodashAnyHack: any;
|
359
|
-
}>(t:
|
360
|
+
}>(t: T_182): boolean;
|
360
361
|
isArrayLike(value: ((...args: any[]) => any) | null | undefined): value is never;
|
361
362
|
isArrayLike(value: any): value is {
|
362
363
|
length: number;
|
363
364
|
};
|
364
|
-
isArrayLikeObject<
|
365
|
+
isArrayLikeObject<T_183 extends {
|
365
366
|
__lodashAnyHack: any;
|
366
|
-
}>(value:
|
367
|
+
}>(value: T_183): boolean;
|
367
368
|
isArrayLikeObject(value: string | number | boolean | Function | ((...args: any[]) => any) | null | undefined): value is never;
|
368
369
|
isArrayLikeObject(value: any): value is object & {
|
369
370
|
length: number;
|
@@ -372,6 +373,12 @@ export declare const vendorMap: {
|
|
372
373
|
isBuffer(value?: any): boolean;
|
373
374
|
isDate(value?: any): value is Date;
|
374
375
|
isElement(value?: any): boolean;
|
376
|
+
isEmpty<T_184 extends {
|
377
|
+
__trapAny: any;
|
378
|
+
}>(value?: T_184 | undefined): boolean;
|
379
|
+
isEmpty(value: string): value is "";
|
380
|
+
isEmpty(value: lodash.List<any> | Map<any, any> | Set<any> | null | undefined): boolean;
|
381
|
+
isEmpty<T_185 extends object>(value: T_185 | null | undefined): value is lodash.EmptyObjectOf<T_185> | null | undefined;
|
375
382
|
isEmpty(value?: any): boolean;
|
376
383
|
isEqual(value: any, other: any): boolean;
|
377
384
|
isEqualWith(value: any, other: any, customizer?: lodash.IsEqualCustomizer | undefined): boolean;
|
@@ -402,8 +409,8 @@ export declare const vendorMap: {
|
|
402
409
|
isWeakSet(value?: any): value is WeakSet<object>;
|
403
410
|
lt(value: any, other: any): boolean;
|
404
411
|
lte(value: any, other: any): boolean;
|
405
|
-
toArray<
|
406
|
-
toArray<
|
412
|
+
toArray<T_186>(value: lodash.Dictionary<T_186> | lodash.NumericDictionary<T_186> | null | undefined): T_186[];
|
413
|
+
toArray<T_187>(value: T_187): T_187[keyof T_187][];
|
407
414
|
toArray(): any[];
|
408
415
|
toFinite(value: any): number;
|
409
416
|
toInteger(value: any): number;
|
@@ -416,17 +423,17 @@ export declare const vendorMap: {
|
|
416
423
|
ceil(n: number, precision?: number | undefined): number;
|
417
424
|
divide(dividend: number, divisor: number): number;
|
418
425
|
floor(n: number, precision?: number | undefined): number;
|
419
|
-
max<
|
420
|
-
maxBy<
|
426
|
+
max<T_188>(collection: lodash.List<T_188> | null | undefined): T_188 | undefined;
|
427
|
+
maxBy<T_189>(collection: lodash.List<T_189> | null | undefined, iteratee?: lodash.ValueIteratee<T_189> | undefined): T_189 | undefined;
|
421
428
|
mean(collection: lodash.List<any> | null | undefined): number;
|
422
|
-
meanBy<
|
423
|
-
min<
|
424
|
-
minBy<
|
429
|
+
meanBy<T_190>(collection: lodash.List<T_190> | null | undefined, iteratee?: lodash.ValueIteratee<T_190> | undefined): number;
|
430
|
+
min<T_191>(collection: lodash.List<T_191> | null | undefined): T_191 | undefined;
|
431
|
+
minBy<T_192>(collection: lodash.List<T_192> | null | undefined, iteratee?: lodash.ValueIteratee<T_192> | undefined): T_192 | undefined;
|
425
432
|
multiply(multiplier: number, multiplicand: number): number;
|
426
433
|
round(n: number, precision?: number | undefined): number;
|
427
434
|
subtract(minuend: number, subtrahend: number): number;
|
428
435
|
sum(collection: lodash.List<any> | null | undefined): number;
|
429
|
-
sumBy<
|
436
|
+
sumBy<T_193>(collection: lodash.List<T_193> | null | undefined, iteratee?: string | ((value: T_193) => number) | undefined): number;
|
430
437
|
clamp(number: number, lower: number, upper: number): number;
|
431
438
|
clamp(number: number, upper: number): number;
|
432
439
|
inRange(n: number, start: number, end?: number | undefined): boolean;
|
@@ -458,9 +465,9 @@ export declare const vendorMap: {
|
|
458
465
|
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;
|
459
466
|
assignWith<TObject_19>(object: TObject_19): TObject_19;
|
460
467
|
assignWith<TResult_30>(object: any, ...otherArgs: any[]): TResult_30;
|
461
|
-
at<
|
462
|
-
at<
|
463
|
-
create<
|
468
|
+
at<T_194>(object: lodash.Dictionary<T_194> | lodash.NumericDictionary<T_194> | null | undefined, ...props: lodash.PropertyPath[]): T_194[];
|
469
|
+
at<T_195 extends object>(object: T_195 | null | undefined, ...props: lodash.Many<keyof T_195>[]): T_195[keyof T_195][];
|
470
|
+
create<T_196 extends object, U_3 extends object>(prototype: T_196, properties?: U_3 | undefined): T_196 & U_3;
|
464
471
|
defaults<TObject_20, TSource_4>(object: TObject_20, source: TSource_4): NonNullable<TSource_4 & TObject_20>;
|
465
472
|
defaults<TObject_21, TSource1_12, TSource2_12>(object: TObject_21, source1: TSource1_12, source2: TSource2_12): NonNullable<TSource2_12 & TSource1_12 & TObject_21>;
|
466
473
|
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>;
|
@@ -468,9 +475,9 @@ export declare const vendorMap: {
|
|
468
475
|
defaults<TObject_24>(object: TObject_24): NonNullable<TObject_24>;
|
469
476
|
defaults(object: any, ...sources: any[]): any;
|
470
477
|
defaultsDeep(object: any, ...sources: any[]): any;
|
471
|
-
entries<
|
478
|
+
entries<T_197>(object?: lodash.Dictionary<T_197> | lodash.NumericDictionary<T_197> | undefined): [string, T_197][];
|
472
479
|
entries(object?: object | undefined): [string, any][];
|
473
|
-
entriesIn<
|
480
|
+
entriesIn<T_198>(object?: lodash.Dictionary<T_198> | lodash.NumericDictionary<T_198> | undefined): [string, T_198][];
|
474
481
|
entriesIn(object?: object | undefined): [string, any][];
|
475
482
|
extend<TObject_25, TSource_5>(object: TObject_25, source: TSource_5): TObject_25 & TSource_5;
|
476
483
|
extend<TObject_26, TSource1_15, TSource2_15>(object: TObject_26, source1: TSource1_15, source2: TSource2_15): TObject_26 & TSource1_15 & TSource2_15;
|
@@ -484,18 +491,18 @@ export declare const vendorMap: {
|
|
484
491
|
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;
|
485
492
|
extendWith<TObject_34>(object: TObject_34): TObject_34;
|
486
493
|
extendWith<TResult_32>(object: any, ...otherArgs: any[]): TResult_32;
|
487
|
-
findKey<
|
488
|
-
findLastKey<
|
489
|
-
forIn<
|
490
|
-
forIn<
|
491
|
-
forInRight<
|
492
|
-
forInRight<
|
493
|
-
forOwn<
|
494
|
-
forOwn<
|
495
|
-
forOwnRight<
|
496
|
-
forOwnRight<
|
494
|
+
findKey<T_199>(object: T_199 | null | undefined, predicate?: lodash.ObjectIteratee<T_199> | undefined): string | undefined;
|
495
|
+
findLastKey<T_200>(object: T_200 | null | undefined, predicate?: lodash.ObjectIteratee<T_200> | undefined): string | undefined;
|
496
|
+
forIn<T_201>(object: T_201, iteratee?: lodash.ObjectIterator<T_201, any> | undefined): T_201;
|
497
|
+
forIn<T_202>(object: T_202 | null | undefined, iteratee?: lodash.ObjectIterator<T_202, any> | undefined): T_202 | null | undefined;
|
498
|
+
forInRight<T_203>(object: T_203, iteratee?: lodash.ObjectIterator<T_203, any> | undefined): T_203;
|
499
|
+
forInRight<T_204>(object: T_204 | null | undefined, iteratee?: lodash.ObjectIterator<T_204, any> | undefined): T_204 | null | undefined;
|
500
|
+
forOwn<T_205>(object: T_205, iteratee?: lodash.ObjectIterator<T_205, any> | undefined): T_205;
|
501
|
+
forOwn<T_206>(object: T_206 | null | undefined, iteratee?: lodash.ObjectIterator<T_206, any> | undefined): T_206 | null | undefined;
|
502
|
+
forOwnRight<T_207>(object: T_207, iteratee?: lodash.ObjectIterator<T_207, any> | undefined): T_207;
|
503
|
+
forOwnRight<T_208>(object: T_208 | null | undefined, iteratee?: lodash.ObjectIterator<T_208, any> | undefined): T_208 | null | undefined;
|
497
504
|
functions(object: any): string[];
|
498
|
-
functionsIn<
|
505
|
+
functionsIn<T_209 extends {}>(object: any): string[];
|
499
506
|
get<TObject_35 extends object, TKey extends keyof TObject_35>(object: TObject_35, path: TKey | [TKey]): TObject_35[TKey];
|
500
507
|
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;
|
501
508
|
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>;
|
@@ -508,33 +515,33 @@ export declare const vendorMap: {
|
|
508
515
|
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];
|
509
516
|
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;
|
510
517
|
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>;
|
511
|
-
get<
|
512
|
-
get<
|
513
|
-
get<
|
518
|
+
get<T_210>(object: lodash.NumericDictionary<T_210>, path: number): T_210;
|
519
|
+
get<T_211>(object: lodash.NumericDictionary<T_211> | null | undefined, path: number): T_211 | undefined;
|
520
|
+
get<T_212, TDefault_4>(object: lodash.NumericDictionary<T_212> | null | undefined, path: number, defaultValue: TDefault_4): T_212 | TDefault_4;
|
514
521
|
get<TDefault_5>(object: null | undefined, path: lodash.PropertyPath, defaultValue: TDefault_5): TDefault_5;
|
515
522
|
get(object: null | undefined, path: lodash.PropertyPath): undefined;
|
516
523
|
get(object: any, path: lodash.PropertyPath, defaultValue?: any): any;
|
517
|
-
has<
|
518
|
-
hasIn<
|
524
|
+
has<T_213>(object: T_213, path: lodash.PropertyPath): boolean;
|
525
|
+
hasIn<T_214>(object: T_214, path: lodash.PropertyPath): boolean;
|
519
526
|
invert(object: object): lodash.Dictionary<string>;
|
520
|
-
invertBy<
|
521
|
-
invertBy<
|
527
|
+
invertBy<T_215>(object: lodash.Dictionary<T_215> | lodash.NumericDictionary<T_215> | null | undefined, interatee?: lodash.ValueIteratee<T_215> | undefined): lodash.Dictionary<string[]>;
|
528
|
+
invertBy<T_216 extends object>(object: T_216 | null | undefined, interatee?: lodash.ValueIteratee<T_216[keyof T_216]> | undefined): lodash.Dictionary<string[]>;
|
522
529
|
invoke(object: any, path: lodash.PropertyPath, ...args: any[]): any;
|
523
530
|
keys(object?: any): string[];
|
524
531
|
keysIn(object?: any): string[];
|
525
|
-
mapKeys<
|
526
|
-
mapKeys<
|
532
|
+
mapKeys<T_217>(object: lodash.List<T_217> | null | undefined, iteratee?: lodash.ListIteratee<T_217> | undefined): lodash.Dictionary<T_217>;
|
533
|
+
mapKeys<T_218 extends object>(object: T_218 | null | undefined, iteratee?: lodash.ObjectIteratee<T_218> | undefined): lodash.Dictionary<T_218[keyof T_218]>;
|
527
534
|
mapValues<TResult_33>(obj: string | null | undefined, callback: lodash.StringIterator<TResult_33>): lodash.NumericDictionary<TResult_33>;
|
528
|
-
mapValues<
|
529
|
-
mapValues<
|
530
|
-
mapValues<
|
531
|
-
mapValues<
|
532
|
-
mapValues<
|
533
|
-
mapValues<
|
535
|
+
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; };
|
536
|
+
mapValues<T_220>(obj: lodash.Dictionary<T_220> | lodash.NumericDictionary<T_220> | null | undefined, iteratee: object): lodash.Dictionary<boolean>;
|
537
|
+
mapValues<T_221 extends object>(obj: T_221 | null | undefined, iteratee: object): { [P_1 in keyof T_221]: boolean; };
|
538
|
+
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]>;
|
539
|
+
mapValues<T_223>(obj: lodash.Dictionary<T_223> | lodash.NumericDictionary<T_223> | null | undefined, iteratee: string): lodash.Dictionary<any>;
|
540
|
+
mapValues<T_224 extends object>(obj: T_224 | null | undefined, iteratee: string): { [P_2 in keyof T_224]: any; };
|
534
541
|
mapValues(obj: string | null | undefined): lodash.NumericDictionary<string>;
|
535
|
-
mapValues<
|
536
|
-
mapValues<
|
537
|
-
mapValues<
|
542
|
+
mapValues<T_225>(obj: lodash.Dictionary<T_225> | lodash.NumericDictionary<T_225> | null | undefined): lodash.Dictionary<T_225>;
|
543
|
+
mapValues<T_226 extends object>(obj: T_226): T_226;
|
544
|
+
mapValues<T_227 extends object>(obj: T_227 | null | undefined): Partial<T_227>;
|
538
545
|
merge<TObject_47, TSource_7>(object: TObject_47, source: TSource_7): TObject_47 & TSource_7;
|
539
546
|
merge<TObject_48, TSource1_21, TSource2_21>(object: TObject_48, source1: TSource1_21, source2: TSource2_21): TObject_48 & TSource1_21 & TSource2_21;
|
540
547
|
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;
|
@@ -545,54 +552,54 @@ export declare const vendorMap: {
|
|
545
552
|
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;
|
546
553
|
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;
|
547
554
|
mergeWith(object: any, ...otherArgs: any[]): any;
|
548
|
-
omit<
|
549
|
-
omit<
|
550
|
-
omit<
|
551
|
-
omitBy<
|
552
|
-
omitBy<
|
553
|
-
omitBy<
|
554
|
-
pick<
|
555
|
-
pick<
|
556
|
-
pickBy<
|
557
|
-
pickBy<
|
558
|
-
pickBy<
|
559
|
-
pickBy<
|
560
|
-
pickBy<
|
555
|
+
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]>>;
|
556
|
+
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>;
|
557
|
+
omit<T_230 extends object>(object: T_230 | null | undefined, ...paths: lodash.Many<lodash.PropertyName>[]): Partial<T_230>;
|
558
|
+
omitBy<T_231>(object: lodash.Dictionary<T_231> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_231> | undefined): lodash.Dictionary<T_231>;
|
559
|
+
omitBy<T_232>(object: lodash.NumericDictionary<T_232> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_232> | undefined): lodash.NumericDictionary<T_232>;
|
560
|
+
omitBy<T_233 extends object>(object: T_233 | null | undefined, predicate: lodash.ValueKeyIteratee<T_233[keyof T_233]>): Partial<T_233>;
|
561
|
+
pick<T_234 extends object, U_4 extends keyof T_234>(object: T_234, ...props: lodash.Many<U_4>[]): Pick<T_234, U_4>;
|
562
|
+
pick<T_235>(object: T_235 | null | undefined, ...props: lodash.PropertyPath[]): Partial<T_235>;
|
563
|
+
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>;
|
564
|
+
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>;
|
565
|
+
pickBy<T_238>(object: lodash.Dictionary<T_238> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_238> | undefined): lodash.Dictionary<T_238>;
|
566
|
+
pickBy<T_239>(object: lodash.NumericDictionary<T_239> | null | undefined, predicate?: lodash.ValueKeyIteratee<T_239> | undefined): lodash.NumericDictionary<T_239>;
|
567
|
+
pickBy<T_240 extends object>(object: T_240 | null | undefined, predicate?: lodash.ValueKeyIteratee<T_240[keyof T_240]> | undefined): Partial<T_240>;
|
561
568
|
result<TResult_35>(object: any, path: lodash.PropertyPath, defaultValue?: TResult_35 | ((...args: any[]) => TResult_35) | undefined): TResult_35;
|
562
|
-
set<
|
569
|
+
set<T_241 extends object>(object: T_241, path: lodash.PropertyPath, value: any): T_241;
|
563
570
|
set<TResult_36>(object: object, path: lodash.PropertyPath, value: any): TResult_36;
|
564
|
-
setWith<
|
565
|
-
setWith<
|
566
|
-
toPairs<
|
571
|
+
setWith<T_242 extends object>(object: T_242, path: lodash.PropertyPath, value: any, customizer?: lodash.SetWithCustomizer<T_242> | undefined): T_242;
|
572
|
+
setWith<T_243 extends object, TResult_37>(object: T_243, path: lodash.PropertyPath, value: any, customizer?: lodash.SetWithCustomizer<T_243> | undefined): TResult_37;
|
573
|
+
toPairs<T_244>(object?: lodash.Dictionary<T_244> | lodash.NumericDictionary<T_244> | undefined): [string, T_244][];
|
567
574
|
toPairs(object?: object | undefined): [string, any][];
|
568
|
-
toPairsIn<
|
575
|
+
toPairsIn<T_245>(object?: lodash.Dictionary<T_245> | lodash.NumericDictionary<T_245> | undefined): [string, T_245][];
|
569
576
|
toPairsIn(object?: object | undefined): [string, any][];
|
570
|
-
transform<
|
571
|
-
transform<
|
572
|
-
transform<
|
577
|
+
transform<T_246, TResult_38>(object: readonly T_246[], iteratee: lodash.MemoVoidArrayIterator<T_246, TResult_38>, accumulator?: TResult_38 | undefined): TResult_38;
|
578
|
+
transform<T_247, TResult_39>(object: lodash.Dictionary<T_247>, iteratee: lodash.MemoVoidDictionaryIterator<T_247, string, TResult_39>, accumulator?: TResult_39 | undefined): TResult_39;
|
579
|
+
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;
|
573
580
|
transform(object: any[]): any[];
|
574
581
|
transform(object: object): lodash.Dictionary<any>;
|
575
582
|
unset(object: any, path: lodash.PropertyPath): boolean;
|
576
583
|
update(object: object, path: lodash.PropertyPath, updater: (value: any) => any): any;
|
577
|
-
updateWith<
|
578
|
-
updateWith<
|
579
|
-
values<
|
580
|
-
values<
|
584
|
+
updateWith<T_249 extends object>(object: T_249, path: lodash.PropertyPath, updater: (oldValue: any) => any, customizer?: lodash.SetWithCustomizer<T_249> | undefined): T_249;
|
585
|
+
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;
|
586
|
+
values<T_251>(object: lodash.Dictionary<T_251> | lodash.NumericDictionary<T_251> | lodash.List<T_251> | null | undefined): T_251[];
|
587
|
+
values<T_252 extends object>(object: T_252 | null | undefined): T_252[keyof T_252][];
|
581
588
|
values(object: any): any[];
|
582
|
-
valuesIn<
|
583
|
-
valuesIn<
|
589
|
+
valuesIn<T_253>(object: lodash.Dictionary<T_253> | lodash.NumericDictionary<T_253> | lodash.List<T_253> | null | undefined): T_253[];
|
590
|
+
valuesIn<T_254 extends object>(object: T_254 | null | undefined): T_254[keyof T_254][];
|
584
591
|
chain<TrapAny extends {
|
585
592
|
__lodashAnyHack: any;
|
586
593
|
}>(value: TrapAny): lodash.CollectionChain<any> & lodash.FunctionChain<any> & lodash.ObjectChain<any> & lodash.PrimitiveChain<any> & lodash.StringChain;
|
587
|
-
chain<
|
594
|
+
chain<T_255 extends null | undefined>(value: T_255): lodash.PrimitiveChain<T_255>;
|
588
595
|
chain(value: string): lodash.StringChain;
|
589
596
|
chain(value: string | null | undefined): lodash.StringNullableChain;
|
590
|
-
chain<
|
591
|
-
chain<
|
592
|
-
chain<
|
593
|
-
chain<
|
594
|
-
tap<
|
595
|
-
thru<
|
597
|
+
chain<T_256 extends (...args: any[]) => any>(value: T_256): lodash.FunctionChain<T_256>;
|
598
|
+
chain<T_257 = any>(value: lodash.List<T_257> | null | undefined): lodash.CollectionChain<T_257>;
|
599
|
+
chain<T_258 extends object>(value: T_258 | null | undefined): lodash.ObjectChain<T_258>;
|
600
|
+
chain<T_259>(value: T_259): lodash.PrimitiveChain<T_259>;
|
601
|
+
tap<T_260>(value: T_260, interceptor: (value: T_260) => void): T_260;
|
602
|
+
thru<T_261, TResult_42>(value: T_261, interceptor: (value: T_261) => TResult_42): TResult_42;
|
596
603
|
camelCase(string?: string | undefined): string;
|
597
604
|
capitalize(string?: string | undefined): string;
|
598
605
|
deburr(string?: string | undefined): string;
|
@@ -630,12 +637,13 @@ export declare const vendorMap: {
|
|
630
637
|
words(string?: string | undefined, pattern?: string | RegExp | undefined): string[];
|
631
638
|
words(string: string, index: string | number, guard: object): string[];
|
632
639
|
attempt<TResult_43>(func: (...args: any[]) => TResult_43, ...args: any[]): Error | TResult_43;
|
633
|
-
bindAll<
|
634
|
-
cond<
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
defaultTo<
|
640
|
+
bindAll<T_262>(object: T_262, ...methodNames: lodash.Many<string>[]): T_262;
|
641
|
+
cond<R>(pairs: lodash.CondPairNullary<R>[]): () => R;
|
642
|
+
cond<T_263, R_1>(pairs: lodash.CondPairUnary<T_263, R_1>[]): (Target: T_263) => R_1;
|
643
|
+
conforms<T_264>(source: lodash.ConformsPredicateObject<T_264>): (value: T_264) => boolean;
|
644
|
+
constant<T_265>(value: T_265): () => T_265;
|
645
|
+
defaultTo<T_266>(value: T_266 | null | undefined, defaultValue: T_266): T_266;
|
646
|
+
defaultTo<T_267, TDefault_6>(value: T_267 | null | undefined, defaultValue: TDefault_6): T_267 | TDefault_6;
|
639
647
|
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;
|
640
648
|
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;
|
641
649
|
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;
|
@@ -651,14 +659,14 @@ export declare const vendorMap: {
|
|
651
659
|
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;
|
652
660
|
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;
|
653
661
|
flowRight(...func: lodash.Many<(...args: any[]) => any>[]): (...args: any[]) => any;
|
654
|
-
identity<
|
662
|
+
identity<T_268>(value: T_268): T_268;
|
655
663
|
identity(): undefined;
|
656
664
|
iteratee<TFunction extends (...args: any[]) => any>(func: TFunction): TFunction;
|
657
665
|
iteratee(func: string | number | symbol | object): (...args: any[]) => any;
|
658
|
-
matches<
|
659
|
-
matches<
|
660
|
-
matchesProperty<
|
661
|
-
matchesProperty<
|
666
|
+
matches<T_269>(source: T_269): (value: any) => boolean;
|
667
|
+
matches<T_270, V>(source: T_270): (value: V) => boolean;
|
668
|
+
matchesProperty<T_271>(path: lodash.PropertyPath, srcValue: T_271): (value: any) => boolean;
|
669
|
+
matchesProperty<T_272, V_1>(path: lodash.PropertyPath, srcValue: T_272): (value: V_1) => boolean;
|
662
670
|
method(path: lodash.PropertyPath, ...args: any[]): (object: any) => any;
|
663
671
|
methodOf(object: object, ...args: any[]): (path: lodash.PropertyPath) => any;
|
664
672
|
mixin<TObject_55>(object: TObject_55, source: lodash.Dictionary<(...args: any[]) => any>, options?: lodash.MixinOptions | undefined): TObject_55;
|
@@ -667,12 +675,12 @@ export declare const vendorMap: {
|
|
667
675
|
noop(...args: any[]): void;
|
668
676
|
nthArg(n?: number | undefined): (...args: any[]) => any;
|
669
677
|
over<TResult_45>(...iteratees: lodash.Many<(...args: any[]) => TResult_45>[]): (...args: any[]) => TResult_45[];
|
670
|
-
overEvery<
|
671
|
-
overEvery<
|
672
|
-
overSome<
|
673
|
-
overSome<
|
678
|
+
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;
|
679
|
+
overEvery<T_274>(...predicates: lodash.Many<(...args: T_274[]) => boolean>[]): (...args: T_274[]) => boolean;
|
680
|
+
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;
|
681
|
+
overSome<T_276>(...predicates: lodash.Many<(...args: T_276[]) => boolean>[]): (...args: T_276[]) => boolean;
|
674
682
|
property<TObj, TResult_46>(path: lodash.PropertyPath): (obj: TObj) => TResult_46;
|
675
|
-
propertyOf<
|
683
|
+
propertyOf<T_277 extends {}>(object: T_277): (path: lodash.PropertyPath) => any;
|
676
684
|
range(start: number, end?: number | undefined, step?: number | undefined): number[];
|
677
685
|
range(end: number, index: string | number, guard: object): number[];
|
678
686
|
rangeRight(start: number, end?: number | undefined, step?: number | undefined): number[];
|
@@ -5,8 +5,8 @@ import { ConfigurationService, FlowConfigurationService, lineItemUtils, LineItem
|
|
5
5
|
import * as lodash from 'lodash';
|
6
6
|
import * as rxjs from 'rxjs';
|
7
7
|
import * as rxjsOperators from 'rxjs/operators';
|
8
|
-
import * as
|
9
|
-
import * as
|
8
|
+
import * as cmsActions from './cms.actions';
|
9
|
+
import * as cmsInjectionTokens from './injection-tokens';
|
10
10
|
import { IntegrationState } from './services/integration.state';
|
11
11
|
import { TemplatesService } from './services/templates.service';
|
12
12
|
export const vendorMap = {
|
@@ -34,4 +34,4 @@ export const vendorMap = {
|
|
34
34
|
'rxjs/operators': rxjsOperators,
|
35
35
|
lodash: lodash,
|
36
36
|
};
|
37
|
-
//# sourceMappingURL=data:application/json;base64,
|
37
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVuZG9yLW1hcC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvc2RrL2Ntcy92ZW5kb3ItbWFwLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sS0FBSyxXQUFXLE1BQU0sZUFBZSxDQUFDO0FBQzdDLE9BQU8sS0FBSyxZQUFZLE1BQU0sZ0JBQWdCLENBQUM7QUFDL0MsT0FBTyxFQUNMLGlCQUFpQixFQUNqQixlQUFlLEVBQ2YsNEJBQTRCLEVBQzVCLDJCQUEyQixFQUMzQixtQkFBbUIsRUFDbkIsZUFBZSxFQUNmLGVBQWUsRUFDZixjQUFjLEVBQ2Qsb0JBQW9CLEdBQ3JCLE1BQU0sYUFBYSxDQUFDO0FBQ3JCLE9BQU8sRUFDTCxvQkFBb0IsRUFDcEIsd0JBQXdCLEVBQ3hCLGFBQWEsRUFDYixjQUFjLEVBQ2Qsb0JBQW9CLEVBQ3BCLGlCQUFpQixHQUNsQixNQUFNLGtCQUFrQixDQUFDO0FBQzFCLE9BQU8sS0FBSyxNQUFNLE1BQU0sUUFBUSxDQUFDO0FBQ2pDLE9BQU8sS0FBSyxJQUFJLE1BQU0sTUFBTSxDQUFDO0FBQzdCLE9BQU8sS0FBSyxhQUFhLE1BQU0sZ0JBQWdCLENBQUM7QUFDaEQsT0FBTyxLQUFLLFVBQVUsTUFBTSxlQUFlLENBQUM7QUFDNUMsT0FBTyxLQUFLLGtCQUFrQixNQUFNLG9CQUFvQixDQUFDO0FBQ3pELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQ2hFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBRWhFLE1BQU0sQ0FBQyxNQUFNLFNBQVMsR0FBRztJQUN2QixrQkFBa0Isa0JBQ2hCLG9CQUFvQjtRQUNwQixpQkFBaUI7UUFDakIsd0JBQXdCO1FBQ3hCLGNBQWM7UUFDZCxvQkFBb0IsSUFDakIsYUFBYSxDQUNqQjtJQUNELGlCQUFpQixnREFDWixrQkFBa0IsR0FDbEIsVUFBVSxLQUNiLGdCQUFnQjtRQUNoQixnQkFBZ0IsR0FDakI7SUFDRCxhQUFhLEVBQUU7UUFDYixvQkFBb0I7UUFDcEIsZUFBZTtRQUNmLDJCQUEyQjtRQUMzQiw0QkFBNEI7UUFDNUIsY0FBYztRQUNkLGlCQUFpQjtRQUNqQixlQUFlO1FBQ2YsbUJBQW1CO1FBQ25CLGVBQWU7S0FDaEI7SUFDRCxlQUFlLEVBQUUsV0FBVztJQUM1QixnQkFBZ0IsRUFBRSxZQUFZO0lBQzlCLElBQUksRUFBRSxJQUFJO0lBQ1YsZ0JBQWdCLEVBQUUsYUFBYTtJQUMvQixNQUFNLEVBQUUsTUFBTTtDQUNmLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBhbmd1bGFyQ29yZSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCAqIGFzIGFuZ3VsYXJGb3JtcyBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQge1xuICBDYXRhbG9nQXBpU2VydmljZSxcbiAgRGVsdGFBcGlTZXJ2aWNlLFxuICBEb2N1bWVudEF0dGFjaG1lbnRBcGlTZXJ2aWNlLFxuICBEb2N1bWVudFRlbXBsYXRlc0FwaVNlcnZpY2UsXG4gIFBpY2tsaXN0c0FwaVNlcnZpY2UsXG4gIFByaWNlQXBpU2VydmljZSxcbiAgUXVvdGVBcGlTZXJ2aWNlLFxuICBSYW1wQXBpU2VydmljZSxcbiAgU2FsZXNmb3JjZUFwaVNlcnZpY2UsXG59IGZyb20gJ0B2ZWxvY2UvYXBpJztcbmltcG9ydCB7XG4gIENvbmZpZ3VyYXRpb25TZXJ2aWNlLFxuICBGbG93Q29uZmlndXJhdGlvblNlcnZpY2UsXG4gIGxpbmVJdGVtVXRpbHMsXG4gIExpbmVJdGVtV29ya2VyLFxuICBQcm9kdWN0SW1hZ2VzU2VydmljZSxcbiAgUXVvdGVEcmFmdFNlcnZpY2UsXG59IGZyb20gJ0B2ZWxvY2Uvc2RrL2NvcmUnO1xuaW1wb3J0ICogYXMgbG9kYXNoIGZyb20gJ2xvZGFzaCc7XG5pbXBvcnQgKiBhcyByeGpzIGZyb20gJ3J4anMnO1xuaW1wb3J0ICogYXMgcnhqc09wZXJhdG9ycyBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5pbXBvcnQgKiBhcyBjbXNBY3Rpb25zIGZyb20gJy4vY21zLmFjdGlvbnMnO1xuaW1wb3J0ICogYXMgY21zSW5qZWN0aW9uVG9rZW5zIGZyb20gJy4vaW5qZWN0aW9uLXRva2Vucyc7XG5pbXBvcnQgeyBJbnRlZ3JhdGlvblN0YXRlIH0gZnJvbSAnLi9zZXJ2aWNlcy9pbnRlZ3JhdGlvbi5zdGF0ZSc7XG5pbXBvcnQgeyBUZW1wbGF0ZXNTZXJ2aWNlIH0gZnJvbSAnLi9zZXJ2aWNlcy90ZW1wbGF0ZXMuc2VydmljZSc7XG5cbmV4cG9ydCBjb25zdCB2ZW5kb3JNYXAgPSB7XG4gICdAdmVsb2NlL3Nkay9jb3JlJzoge1xuICAgIENvbmZpZ3VyYXRpb25TZXJ2aWNlLFxuICAgIFF1b3RlRHJhZnRTZXJ2aWNlLFxuICAgIEZsb3dDb25maWd1cmF0aW9uU2VydmljZSxcbiAgICBMaW5lSXRlbVdvcmtlcixcbiAgICBQcm9kdWN0SW1hZ2VzU2VydmljZSxcbiAgICAuLi5saW5lSXRlbVV0aWxzLFxuICB9LFxuICAnQHZlbG9jZS9zZGsvY21zJzoge1xuICAgIC4uLmNtc0luamVjdGlvblRva2VucyxcbiAgICAuLi5jbXNBY3Rpb25zLFxuICAgIFRlbXBsYXRlc1NlcnZpY2UsXG4gICAgSW50ZWdyYXRpb25TdGF0ZSxcbiAgfSxcbiAgJ0B2ZWxvY2UvYXBpJzoge1xuICAgIFNhbGVzZm9yY2VBcGlTZXJ2aWNlLFxuICAgIFF1b3RlQXBpU2VydmljZSxcbiAgICBEb2N1bWVudFRlbXBsYXRlc0FwaVNlcnZpY2UsXG4gICAgRG9jdW1lbnRBdHRhY2htZW50QXBpU2VydmljZSxcbiAgICBSYW1wQXBpU2VydmljZSxcbiAgICBDYXRhbG9nQXBpU2VydmljZSxcbiAgICBEZWx0YUFwaVNlcnZpY2UsXG4gICAgUGlja2xpc3RzQXBpU2VydmljZSxcbiAgICBQcmljZUFwaVNlcnZpY2UsXG4gIH0sXG4gICdAYW5ndWxhci9jb3JlJzogYW5ndWxhckNvcmUsXG4gICdAYW5ndWxhci9mb3Jtcyc6IGFuZ3VsYXJGb3JtcyxcbiAgcnhqczogcnhqcyxcbiAgJ3J4anMvb3BlcmF0b3JzJzogcnhqc09wZXJhdG9ycyxcbiAgbG9kYXNoOiBsb2Rhc2gsXG59O1xuXG5leHBvcnQgdHlwZSBWZW5kb3JNYXAgPSB0eXBlb2YgdmVuZG9yTWFwO1xuIl19
|